菜鸟教程小白 发表于 2022-12-13 03:18:03

ios - 在ios开发中获取文档文件夹后的路径


                                            <p><p>我需要有我的应用程序的路径<em>之后</em> <strong>Document</strong>文件夹。</p>

<p>考虑我有这个路径:<code>myapp/sandbox/Documents/a/b/c/Documents/d/e/myfile.txt</code>。</p>

<p>我需要一个程序来获得这个路径:<code>a/b/c/Documents/d/e/myfile.txt</code>。</p>

<p>如何获得第二条路径?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>//试试这个</p>

<pre><code>NSString * str_DocDirPath= [ stringByAppendingPathComponent:@&#34;a/b/c/d/e/myfile.txt&#34;];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在ios开发中获取文档文件夹后的路径,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18075270/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18075270/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在ios开发中获取文档文件夹后的路径