最近武漢連續(xù)下雨很多天,降溫了2次,溫度一下子由28度到14度,再到8度,手太冷了,
ObjectC,遍歷目錄
。加上最近發(fā)生了一些比較棘手的家庭瑣事,最近沒心情繼續(xù)學(xué)習(xí)Object-C。
后來(lái),我想明白了,心情不好的時(shí)候,還是應(yīng)該堅(jiān)持學(xué)習(xí)。
郁郁寡歡,于事無(wú)補(bǔ),該干嘛干嘛去~
不開心的事情,總會(huì)過去的。等過去之后,該做的事情總是要繼續(xù)做的。
因?yàn)椴婚_心,浪費(fèi)不少大好時(shí)間,才是雪上加霜的。
計(jì)劃2015和2016年,初步掌握iOS開發(fā)。
一個(gè)人可以獨(dú)自開發(fā)iOS應(yīng)用,看得懂、能夠維護(hù)別人已經(jīng)寫好的APP。
Android也是必須同時(shí)深入學(xué)習(xí)的。
我現(xiàn)在的初步感覺是,Android上手容易,但是因?yàn)殚_源可以有更多內(nèi)容需要學(xué)習(xí)。
而Object-C和iOS開發(fā),上手男很多,但是要學(xué)習(xí)的內(nèi)容會(huì)少很多。
Mac,這么小的Mac,開發(fā)打字效率好低啊,讓人著急額~最近搞得多了,稍微快了一些。
//// main.m// FilePath//// Created by fansunion on 15/11/29.// Copyright (c) 2015年 demo. All rights reserved.//#import<foundation foundation.h="">//enumeratorAtPath 遍歷目錄,如果目錄下有目錄,遞歸遍歷//contentsOfDirectoryAtPath 只遍歷目錄//比較尷尬的是,“當(dāng)前工作目錄”下,只有1個(gè)文件,有點(diǎn)奇怪//所以最后手動(dòng),遍歷“/Users/fansunion”/下的文件,只能簡(jiǎn)單地看看這個(gè)目錄下的文件(目錄)列表int main(int argc, const char * argv[]) { @autoreleasepool { NSString *currentPath; NSString *tempPath; NSFileManager *fm; NSDirectoryEnumerator *dirEnum; NSArray *dirArray; //文件管理器的實(shí)例 fm = [NSFileManager defaultManager]; //獲取當(dāng)前工作目錄的路徑 currentPath = [fm currentDirectoryPath]; NSLog(@"The Path is %@!",currentPath); //枚舉目錄 dirEnum =[fm enumeratorAtPath:currentPath]; while((tempPath=[dirEnum nextObject])!= nil){ NSLog(@"%@",tempPath); } //另外一種枚舉目錄的方法 dirArray= [fm contentsOfDirectoryAtPath:currentPath error:NULL]; NSLog(@"%@",dirArray); for(tempPath in dirArray){ NSLog(@"%@",tempPath); } dirArray =[fm contentsOfDirectoryAtPath:@"/Users/fansunion" error:NULL]; NSLog(@"%@",dirArray); } return 0;}</foundation>
程序輸出
2015-11-29 13:02:49.528 FilePath[2750:159478] The Path is /Users/fansunion/Library/Developer/Xcode/DerivedData/FilePath-dfjiajapcipfrbcbfjmxijqhscws/Build/Products/Debug!
2015-11-29 13:02:49.534 FilePath[2750:159478] FilePath
2015-11-29 13:02:49.534 FilePath[2750:159478] (
FilePath
)
2015-11-29 13:02:49.534 FilePath[2750:159478] FilePath
2015-11-29 13:02:49.535 FilePath[2750:159478] (
".bash_history",
".CFUserTextEncoding",
".DS_Store",
".ssh",
".subversion",
".Trash",
Desktop,
Documents,
Downloads,
Library,
Movies,
Music,
Pictures,
Public
)
Program ended with exit code: 0