No Such File and Directory Found Xcode 7

No such file and directory found Xcode 7

Try doing following:

  1. Product -> Clean and build folder
  2. Go to finder -> library -> Developer -> Xcode -> Derived data delete
    that folder

Also, see if evernote SDK was ever linked to your test target. If so, you would need to delete if from there as well.

Xcode- 7: No such file or directory

do following two things I might solve your problem.

  1. Product -> Clean and build folder
  2. Go to finder -> library -> Developer -> Xcode -> Derived data
    delete that folder

or check screen shot may be this is your problem
Sample Image

and then check

No such file or directory XCODE 7

The answer was pretty easy: I just have to reinstall the pod file and the Carthage file and everything works nice.

No such file or directory but file exists Xcode

iOS apps can access resources which are bundled into its Bundle during archive or the one that exists within its SandBox (resources downloaded programmatically and kept in document/temp folder of sandBox). Your audio files are on Desktop of your Mac and iOS app cant access them.

What should I do?

Select the entry of these items in your Xcode, delete them (remove only reference not original file)

Sample Image

now go back to desktop, select items and drag it to your project and select copy items if needed while copying

Sample Image

this will copy items to your app bundle now you can access it :)

Free of cost Advice

Thats a horrible coding approach to copy audio files (Assuming audio files are huge in size as I don't have context of your audio file sizes) to your app bundle :| this will bulk up your app size, think of more scalable approach, like downloading it on the fly from servers (lazy download, background download, or if you are streaming the m3U8 format etc etc)

What's the Xcode no such file or directory error?

look up here XCode Build – CopyPNGFile Error and No Such File or Directory .
I had same problem and this solution helps me.

If you receive either of these annoying errors when building your
xcode app, something has corrupted in your project bundle.

  1. Open your project in Xcode
  2. Click on your project
  3. Click on your project under Targets
  4. Hit the build phases tab
  5. Open “Copy Bundle Resources” near the bottom
  6. Look for any resources listed in red!

Unable to Archive Xcode Project: No such file or directory

The problem is probably that the Ensembles.bundle is not being built in your Release build for archiving.

Add Ensembles Resources iOS as a dependency of your own app. That will ensure it builds before your app, including the Release build. You set that in the Build Phases tab of your app's target.

Xcode Error : No such file or directory when building

I finally find somewhat by chance an answer to my problem.

I've opened the .xcodeproj file in finder, and then edit project.pbxproj.
In this file, I've founded a line :

84635D6F1C22F90100C55AB2 /* AFNetworking */ = {isa = PBXFileReference; lastKnownFileType = folder; name = AFNetworking; path = "/Users/admin/Desktop/My_path/My Project/Product-name/Sub Folder/AFNetworking"; sourceTree = "<absolute>"; };

And retyping it properly made the trick.



Related Topics



Leave a reply



Submit