listing files in textfile
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
k
1 个评论
Walter Roberson
2012-8-13
The fprintf() could be simplified to
fprintf(fff, '%s\n', fileNames{i});
回答(1 个)
Walter Roberson
2012-8-13
0 个投票
The order of files returned by dir() is "whatever is returned by the underlying operating system". In turn operating systems might use different orderings depending on the variety of filesystem being used.
You must therefore sort the names before you print them out. See http://www.mathworks.com/matlabcentral/fileexchange/8399-sortn-sort-textual-lists
0 个评论
此问题已关闭。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!