4
System.IO.Path中有許多很好的小函數,例如替換文件擴展名,附加到路徑,獲取文件名,從C#中的路徑獲取目錄。有沒有一個iOS等效的或有點接近的API?iOS中的System.IO.Path相當於
謝謝!
System.IO.Path中有許多很好的小函數,例如替換文件擴展名,附加到路徑,獲取文件名,從C#中的路徑獲取目錄。有沒有一個iOS等效的或有點接近的API?iOS中的System.IO.Path相當於
謝謝!
是的,有。請參閱NSString
中的"Working with Paths"部分參考。
不同,需要使用NSFileManager
類
NSString有很多,讓您操作路徑方法的實際文件。
這不是超級優雅,但它非常有用。
NSString *textFile = @"readme.txt"
NSString *markdownFile = [[textFile stringByDeletingPathExtension] stringByAppendingPathExtension:@"markdown"];
// markdownFile is now "readme.markdown"