Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
1
Question by siege911 · Mar 05, 2014 at 06:10 PM · mobilesaveencodetopng

File Save Location (PC, Mac, iOS, Android, etc)

I'm trying to save a screenshot to file and need some help on exactly how to save it where I want to save it.

Here's just a snippet of my relevant code (mostly copied straight from the Docs). Just trying to save a Texture2D as a PNG file:

 var bytes = selectedPicture.EncodeToPNG();
 File.WriteAllBytes(Application.dataPath + "/../SavedScreen.png", bytes);

I want the file to save to the following locations depending on platform: Windows and Mac - Pictures iOS and Android - Don't care as long as it can be quickly viewed from the respective Image Gallery. I know Android is more lenient on where you put files and will create a new folder in your Gallery for each folder in the file system. Less sure about iOS on how that's handled. Windows Phone - I don't have one to test yet but basically same as iOS/Android.

So what would I do for each platform?

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by Vander-Horn · Jul 20, 2017 at 05:12 PM

The file path is different depending on the OS, however every os has a myDocuments folder, and that is a common place for saving files. There are a few other options to choose from.

In order to get your OS' mydocuments folder simply us

 string path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
 

use Path.Combine method to join to paths with the system appropriate symbol

 string path = Path.Combine(path, "myApplicationName", "ScreenShot.png");

Path.Combine docs: https://msdn.microsoft.com/en-us/library/dd784047(v=vs.110).aspx

stackoverflow post detailing other options for special folders.

https://stackoverflow.com/questions/895723/environment-getfolderpath-commonapplicationdata-is-still-returning-c-docum

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

21 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Can you use WebCam for mobile devices? 1 Answer

Does PersistentDataPath get overwritten on mobile? 1 Answer

Problem Saving game progress 1 Answer

Keeping Highest score - Star Rating System 3 Answers

PlayerPrefs not saving on Android Phone 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges