BlackRaccoon检查文件是否存在

时间:2013-12-16 14:34:13

标签: ios ios7 upload blackraccoon

我正在使用BlackRaccoon在服务器中上传文件。 在上传之前,我想了解是否可以检查我上传的文件是否存在! 可能吗? 谢谢, 蒙特拉

1 个答案:

答案 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以检查您的文件是否已存在于目录中。