1. 程式人生 > >**matlab中fileparts用法**

**matlab中fileparts用法**

1、fileparts:

獲取檔名的組成部分。

2、用法說明:

[filepath,name,ext] = fileparts(filename)

返回指定檔案的路徑名稱、檔名和副檔名

fileparts 僅解析指定的 filename。不會驗證檔案是否存在。

[filepath,name,ext] = fileparts('/home/jsmith/.cshrc')

filepath = 
'/home/jsmith'

name =

  1x0 empty char array

ext = 
'.cshrc'

可參見:https://ww2.mathworks.cn/help/matlab/ref/fileparts.html?searchHighlight=fileparts&s_tid=doc_srchtitle