Search Unity

How to save local files?

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

  1. bakno

    bakno

    Joined:
    Mar 18, 2007
    Posts:
    604
    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:
    604
    Thank you Ostwind

    It works!!! : )