ios - 使用 objective-c 创建一个文件名不存在于该文件夹中的文件
<p><p>我想在文件目录中创建一个名为 <code>simpleFile.txt</code> 的文件。现在,如果这个 <code>simpleFile.txt</code> 已经存在,我想创建另一个具有相同名称但附加文件编号的文件,例如 <code>simpleFile1.txt</code>。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>为此目的使用一个while循环,如下所示</p>
<pre><code>NSFileManager *manager = ;
int i = 1;
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentPath = ;
NSString *newFileName = ;
while () {
NSString *testName = ;
newFileName = ;
i++;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 使用 objective-c创建一个文件名不存在于该文件夹中的文件,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/20283625/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/20283625/
</a>
</p>
页:
[1]