2010-11-29 12 views

Répondre

2
NSError *error = nil; 
NSDictionary *fileInfo = [[NSFileManager defaultManager] attributesOfItemAtPath: filePath error: &error]; 
if (fileInfo) { 
    // examine fileInfo, see NSDictionary (NSFileAttributes) in NSFileManager.h 
} else { 
    // handle the error 
} 
+0

Salut, Merci pour le guidage. Santé à toi – tan

Questions connexes