我正在使用BlackRaccoon在服务器中上传文件。 在上传之前,我想了解是否可以检查我上传的文件是否存在! 可能吗? 谢谢, 蒙特拉
答案 0 :(得分:0)
您可以使用列表目录功能
listDir = [[BRRequestListDirectory alloc] initWithDelegate: self];
listDir.path = @"/home/user/newdirectory/";
listDir.hostname = @"192.168.1.100";
listDir.username = @"yourusername";
listDir.password = @"yourpassword";
[listDir start];
然后在收到的列表上有一个
- (BOOL)fileExists:(NSString *)fileNamePath;
选项。
传递fileName以检查您的文件是否已存在于目录中。