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

I want to be able to put a file to a variable so I can interact with it. For example I could put a wav file into a variable and play it back without having to distribute the separate file. Is this possible for instance by using Base64. I have seen some Python programs for example that have images embedded in the code.

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, you could conceivably store the contents of a binary .wav file as a static, uuencoded text array.

Probably a better way to go about it would be to create a "resource" for your binary data:

http://msdn.microsoft.com/en-us/library/xbx3z216.aspx

share|improve this answer
Just what I needed! – jtl999 May 14 '12 at 2:38

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.