Fly to the sky & Return

OpenPanel 을 통해 선택된 폴더 내부의 파일및 디렉토리의 경로를 보여주는 코드 본문

프로그래밍/Swift(IOS & Mac)

OpenPanel 을 통해 선택된 폴더 내부의 파일및 디렉토리의 경로를 보여주는 코드

낼은어떻게 2016. 3. 16. 11:53
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