C - Reading a file into a byte array
Posted on
16th Feb 2014 07:03 pm by
admin
Hi,
I'm trying to read a file into a byte array in C. I have to use C as this is for a loadrunner script which is based on the C programming language
The .Net code from the developers I'm basically trying to simulate in C is below. I'm not a C programmer but have done some basic C programming as required in my loadrunner scripts so this is a bit out of my depth. Any help would be very appraciated
Thanks
/// Loads the file to the upload request.
///
///
The upload document request.
///
Name of the file.
///
private void LoadFileToUploadRequest(UploadDocumentRequest uploadDocumentRequest, String fileName)
{
if (File.Exists(fileName))
{
FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read);
BinaryReader br = new BinaryReader(fs);
uploadDocumentRequest.Data = br.ReadBytes((int)fs.Length);
}
}
No comments posted yet
Your Answer:
Login to answer
334
10
Other forums
Image loading
Hi Developers,
I'm trying to display an image from images/image.gif getting the url from mysq
Need help with PHP/MySQL drop down menu
I need help on how I can implement a drop down menu which queries mysql database and output the avai
Filename and Line Number Custom Error
I have a class, with a method that accepts 2 parameters. I would like to output error messages.
pageination not working right... coping images over 4 pages
Code: <?php //This code will obtain the required page number from the $_GET array. Note that
PHP Multiples of 2, Show posts...not working (wordpress)
I have been using this code to show div.example with 6 li columns inside it, each li is a post with