Save a Table as a .csv in a Specified Folder

68 ビュー (過去 30 日間)
Jon
Jon 2022 年 11 月 8 日
コメント済み: Jon 2022 年 11 月 8 日
Hello,
I followed this post about saving a table to a specific folder, but am not having any luck.
Here is the code I have:
save_table ='C:\Users\Folder Path\Data';
table_path_format = [save_table 'Name_of_File.csv'];
writetable(T,table_path_format);
where T is a 90 x 8 table.
Am I skipping a step?
I as also looing at this post about the writetable command.
Thanks.

採用された回答

Adam Danz
Adam Danz 2022 年 11 月 8 日
編集済み: Adam Danz 2022 年 11 月 8 日
The accepted answer in the question you followed uses fullfile to construct the file path. That's much safer than constructing the file path by concatenating char vectors (like you're doing). Your table_path_format is missing a file separator character. fullfile adds that for you.
  1 件のコメント
Jon
Jon 2022 年 11 月 8 日
Yes, thank you that worked.
I originally did try that, but must've mis-typed something along the way when it didn't work.
Chekcing through it again with your advice saved the file to the correct folder.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by