iOS路徑的幾種操作

2021-06-22 08:08:24 字數 965 閱讀 4282

nsstring

*path = @"/users/tarena/documents/core ios";

//1. 加路徑內容,自動加上/

nsstring

@"model_and_storage"];

nslog(@"path:%@", newpath);

//2. 拆分路徑

nsarray *conponents = [newpath pathcomponents];

for (nsstring * path in conponents)

//3. 加多個路徑內容

@"day01/bj"];

//4. 加檔案字尾名

自動加.

@"rtf"];

nslog(@"%@", newpath);

//5. 從路徑中獲取字尾

nsstring *extension = [newpath pathextension];

nslog(@"extension:%@", extension);

//6. 從路徑中獲取檔名/資料夾名

nsstring *filename = [newpath lastpathcomponent];

nslog(@"filename:%@", filename);

//7. 獲取最後的一目錄(資料夾)名,拿到檔案的目錄或拿到目錄的父目錄(cd ..)

nsstring *lastpathcomponent = [newpath stringbydeletinglastpathcomponent];

nslog(@"last:%@", lastpathcomponent);

//8. 標準化處理

nsstring *path2 = @"./haha";

path2 = [path2 stringbystandardizingpath];

nslog(@"path2:%@", path2);

iOS 中幾種簡單常用的操作

1 判斷陣列中是否存在某元素 boolisvalue keyarray containsobject q aaa 2 把字串按逗號隔開,並儲存到陣列 nsarray keyarray nsarray alloc init keyarray 冬瓜,西瓜,南瓜,苦瓜,絲瓜 componentssepar...

iOS 獲取檔案的目錄路徑的幾種方法

iphone沙箱模型的有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.nshomedirectory 手動儲存的檔案在documents檔案裡 nsuserdefaults儲存的檔案在tmp資料夾裡 1 documents 目錄 您應該將所有的應用程式資料檔...

iOS 獲取檔案的目錄路徑的幾種方法

iphone沙箱模型的有四個資料夾,分別是什麼,永久資料儲存一般放在什麼位置,得到模擬器的路徑的簡單方式是什麼.nshomedirectory 手動儲存的檔案在documents檔案裡 nsuserdefaults儲存的檔案在tmp資料夾裡 1 documents 目錄 您應該將所有的應用程式資料檔...