Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a folder Assets/source. It has a lot of files (.png,.xml ...) and also divided with sub folders inside. Is it possible to have them all copy to the output directory without manually setting them one by one? or to copying this folder to /LocalState at runtime? enter image description here

I have tried adding it to paths, I cant seem to find it in the installation folder after install. Thanks for any advice.

share|improve this question
I don't know of a way to do this from the IDE, but you can definitely use * in paths in MSBuild files, e.g. you could include Assets/source/* to pick up all of the files from that directory. – James McNellis Nov 4 '12 at 17:12
I have added to paths but didn't work. if I add * to it, it way say directory not valid. – wtsang02 Nov 4 '12 at 18:06
You can multi-select items and set them all to copy. You can also set a pre-build event to copy the folder – Shawn Kendrot Nov 5 '12 at 4:28

2 Answers

up vote 1 down vote accepted
  1. Copy and paste them to Assets/...
    (By default, Build Action is Content , Copy to output is Do not copy. Leave it at default)

  2. During run time :
    StorageFolder sourceFolder = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFolderAsync("Assests/...");

share|improve this answer

In Visual Studio, select all the files that you want copied to the output directory, and in the "Properties" window, change the setting in "Copy to Output Directory" to "Copy Always". I don't think you could do that to the entire folder though.

share|improve this answer
Not with folder. – wtsang02 Nov 5 '12 at 19:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.