文件不存储在文档目录中

时间:2012-06-29 09:23:33

标签: iphone objective-c ios5 nsdocumentdirectory

我正在文档目录

中存储扩展名为.m4a的音频文件

我的文件第一次完美地存储在文档目录路径中,但是

之后,我的文件不存储在文档目录路径中。

在控制台中,它向我显示整个路径,但在文档目录中

不存在。我的代码如下:

NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *documentsDirectory = [path objectAtIndex:0]; 
        originalFilePath  = [documentsDirectory stringByAppendingPathComponent:audioname];

        NSLog(@"Audioname:::: %@",audioname);

        NSLog(@"originalpath=%@",originalFilePath);

如果您有任何想法,请与我分享。

0 个答案:

没有答案