Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. Dismiss Notice

How to save local files?

Discussion in 'Windows' started by bakno, Aug 7, 2013.

  1. bakno

    bakno

    Joined:
    Mar 18, 2007
    Posts:
    595
    Hi

    I am trying to create a folder within the "Application.dataPath" using the following command "Directory.CreateDirectory" but I receive the following error:

    "Access to the path 'C:\Users\User\Desktop\ProjectVS\Game\bin\x86\Debug\AppX\Data\Files' is denied."

    Should I use another folder or edit the manifest, and if the second option, what should I add to it?

    Thanks
     
  2. Ostwind

    Ostwind

    Joined:
    Mar 22, 2011
    Posts:
    2,804
    You need to use Application.persistentDataPath
     
  3. bakno

    bakno

    Joined:
    Mar 18, 2007
    Posts:
    595
    Thank you Ostwind

    It works!!! : )