Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- kanna parser
- file move
- 스위프트
- dataset
- 파이썬
- EXIF data
- kanna html parser
- 대전 자전거
- 대전
- swift
- html parser
- python
- insert into
- 노은
- swift html parser
- 자전거
- C#
- 엑셀
- 유성
- exifread
- VBA
- 딴지일보 자유게시판 파씽
- MDB
- StreamReader
- 달력
- Xcode
- Exif
- euc-kr
- mdb table 합치기
- 대전 업힐
Archives
- Today
- Total
Fly to the sky & Return
OpenPanel 을 통해 선택된 폴더 내부의 파일및 디렉토리의 경로를 보여주는 코드 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
해당코든 인터넷에 올라와 있는 코드를 수정하여 완성한 코드입니다
사용에는 제한이 없음을 알려드립니다.
사용목적은 제목에서 처럼 특정 폴더를 선택했을때 내부에 있는 디렉토리와 파일들의 경로를 출력해줍니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | import Cocoa class ViewController: NSViewController { func listWithFilter (fdir : NSURL) { let fileManager = NSFileManager.defaultManager() do { // if you want to filter the directory contents you can do like this: if let directoryUrls = try? NSFileManager.defaultManager().contentsOfDirectoryAtURL(fdir, includingPropertiesForKeys: nil, options: NSDirectoryEnumerationOptions.SkipsSubdirectoryDescendants) { print(directoryUrls) } } } @IBAction func open(sender: AnyObject) { var myOpenDialog: NSOpenPanel = NSOpenPanel() myOpenDialog.canChooseDirectories = true myOpenDialog.runModal() var path = myOpenDialog.URL if (path != nil) { listWithFilter(path!) } } } | cs |
'프로그래밍 > Swift(IOS & Mac)' 카테고리의 다른 글
선택된 폴더에 하위폴더 생성하기.. Create the sub_folder where selected folder with Swift (0) | 2016.03.17 |
---|---|
폴더를 불러와서 그 폴더안에 있는 사진 EXIF data중 날짜정보만 추출하는 코드 (0) | 2016.03.16 |
폴더를 선택하고 폴더안에 있는 파일등을 체크하는 코드 in swift with Cocoa (0) | 2016.03.15 |
사진 exif data 중 날짜정보 불러오기 (0) | 2016.03.13 |
Swift용 HTML/XML parser 를 사용해보자....2 (0) | 2016.03.09 |