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 html parser
- python
- 유성
- 대전 자전거
- 달력
- swift
- mdb table 합치기
- MDB
- 스위프트
- 엑셀
- Xcode
- VBA
- EXIF data
- euc-kr
- Exif
- 파이썬
- swift html parser
- html parser
- 자전거
- exifread
- 대전 업힐
- C#
- 대전
- insert into
- dataset
- 노은
- kanna parser
- file move
- StreamReader
- 딴지일보 자유게시판 파씽
Archives
- Today
- Total
Fly to the sky & Return
선택된 폴더에 하위폴더 생성하기.. Create the sub_folder where selected folder with Swift 본문
프로그래밍/Swift(IOS & Mac)
선택된 폴더에 하위폴더 생성하기.. Create the sub_folder where selected folder with Swift
낼은어떻게 2016. 3. 17. 11:55336x280(권장), 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 | import Cocoa class ViewController: NSViewController { @IBAction func open(sender: AnyObject) { var myOpenDialog: NSOpenPanel = NSOpenPanel() myOpenDialog.canChooseDirectories = true myOpenDialog.runModal() var path = myOpenDialog.URL?.path var path1 = String(path!) + "/test" //<- dialog로 선택된 폴더하위에 생성할 폴더이름을 지정 let fileManager = NSFileManager.defaultManager() do { //withIntermediateDirectories: false <-이면 중복된 폴더가 있을때 에러발생 try fileManager.createDirectoryAtPath(path1, withIntermediateDirectories: true, attributes: nil) } catch let error as NSError { print("Error while creating a folder.") } } } |
'프로그래밍 > Swift(IOS & Mac)' 카테고리의 다른 글
[swift] file move.. 파일을 이동하는 코드입니다. (0) | 2016.03.17 |
---|---|
[swift] String split 예제 (0) | 2016.03.17 |
폴더를 불러와서 그 폴더안에 있는 사진 EXIF data중 날짜정보만 추출하는 코드 (0) | 2016.03.16 |
OpenPanel 을 통해 선택된 폴더 내부의 파일및 디렉토리의 경로를 보여주는 코드 (0) | 2016.03.16 |
폴더를 선택하고 폴더안에 있는 파일등을 체크하는 코드 in swift with Cocoa (0) | 2016.03.15 |