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:55
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
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.")
        }
        
        
    }
 
}
 
 
 

cs