Autodesk Vault Customization
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Conversion of File to ByteArray
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
94 Views, 2 Replies
01-11-2013 04:19 AM
Hello,
I know this is a silly question, but i am stuck up with conversion of file to ByteArray. Can some body please suggest me how to convert a file to ByteArray.
My Problem is i have to add a file to Vault 2013 using C#. If a solution link is provided that would be help full
Rgds
Amit
Solved! Go to Solution.
Re: Conversion of File to ByteArray
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-11-2013 04:54 AM in reply to:
amitk_189
You are not the first to get confused between byte[] and ByteArray. The VaultFileBrowser sample in the SDK has an example.
The basic steps are:
- Read in the local file as a byte[]. You can do this using a System.IO.FileStream or calling System.IO.File.ReadAllBytes.
- Create a new ByteArray object and set the 3 properties. For simplicity, I suggest not using compression.
- Pass in the ByteArray object to the Add or CheckIn function.
Re: Conversion of File to ByteArray
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-12-2013 07:57 AM in reply to:
Redmond.D
Perfect, thanks for solution. It worked.


