And, when i do try downloading some files, they come as empty.They do download, and the folder has the succeeded files, and some files are empty..Is there a way to check if that folder has 0 byte files, and if it does, delete the files that are 0 bytes, OR delete the folder if whole folder is 0 byte..
I use this function to convert file to bytes array:
Public Function ConvertToBytes(ByVal path As String) As Byte() Dim _tempByte() As Byte = Nothing If String.IsNullOrEmpty(path) = True Then Throw New ArgumentNullException("File not exist", path ) Return Nothing End If
I need to do some operations that require converting array of bytes to string and the other way. After struggling with it for a few hours I found out the core of my problems. Look at this piece of [code]...
I'm concatenating data files, but the problem is that I'm seeing some extra bytes where the files are joined. The new file has extra bytes. I had thought this was maybe a problem with encoding.Here are the methods that I've tried to use to concatenate the files. The first example I'm getting extra 0xA0 0x00 bytes.
Dim inputfiles() As String = Directory.GetFiles(sourcedir, pattern) Dim bufSize As Integer = 1024 * 64 Dim buf As Byte() = New Byte(bufSize) {}
I need to read a binary file. The Byte-Ordering in this file is different from the Intel-Standard. In good old FORTRAN I've used Equivalence-Statement in such cases (For example Defining a 4-Byte-Integer-variable and 4 Bytes at the same memory location / read the file as bytes / store them in the neccessary order / access the memory using the Integer-Variable). In VB dotnet I programmed a solution using shift-operators:
Currently, my application will send the contents of a directory into a list box. Dim folderDlg As New FolderBrowserDialog folderDlg.ShowNewFolderButton = True If (folderDlg.ShowDialog() = DialogResult.OK) Then ListBox1.Text = folderDlg.SelectedPath Dim di As New IO.DirectoryInfo(folderDlg.SelectedPath) [Code] .....
For now, all that is inside the directory is a text file. I would like my program to read the contents of the text file and remove a set of common words, but I don't really know how to move forward here. Would it be best to create a class that holds a set of words that I would like to remove, then loop through the text file, remove any words that match those inside my class and then write what's left to a new .txt file?
I have a file that is constantly altered, and if an error happends, I want to have a backup. I was wondering if there's a way to make a script that will copy all the files in the selected folder, and post/overwrite them every 20 minutes in a back-up folder or something, and I say overwrite so it doesnt take up 298347234 gigs of data.
I want it to do is that you input a string, then you select an algorithm (Theres only going to be one RijnDael) then you input a key, then the Initialization Vector comes from "txtIV.text" then you select the key bytes and the block bytes from the numeric up/down, then you either encrypt or decrypt.
Ok i am having some issues designing a base-class to handle generics.Caveat is i need to restrict the type put in as a Numeric type, specifically Int16, Int32, or Int64 (Short or Long).I know you can do Of T as {Structure} but i dont want to select the key bytes and the block bytes from the numeric up/down.
I keep getting a ProtocolViolationException "Bytes to be written to the stream exceed the Content-Length bytes size specified." on the following code.I've tried setting Content-Length numerous ways with no success.
Dim url = "https://domain.com" Dim req As WebRequest = WebRequest.Create(url) req.Method = "POST" req.ContentType = "application/xml"
Does it read the entire message string sent by the client? I have a line to write to the stream later in the code and that does not seem to be sending anything back to the client, although the code around is excuting.
i = stream.Read(bytes, 0, bytes.Length) While (i <> 0) Try ' Translate data bytes to a ASCII string.
Probably missing something silly here, Her eis what my display looks like Sending image...(401303) I would prefer it displays as Sending image...(391 kb)
I'm writing a VB.net application (but you can answer in C# if you want, no problem) that uses a 3rd party .NET library. In particular, one method in this library takes an IO.Stream as input (among other things) and writes the results of its processing to said stream. My problem is that the method CLOSES the stream after writing to it, so I can't read back the data that it wrote in it!To be more specific: it works, of course, if the stream is a FIeStream , since it writes the data on disk, but what if I want to read the data directly to memory? I tried using a MemoryStream, but as I said, when the method returns the stream is already closed, and I can't read back anything from it.
Imports System.IO Public Class CloseHijackedMemoryStream Inherits MemoryStream
I am using this code, I got it to work fine with any C# assembly that allows it to be ran from memory. Is there anyway I could get it to work with VB.net?
I am trying to compare two files and I do not know why, the filed downloaded to be compared, is always only 44.898 bytes, despite of being bigger... what am I doing wrong, I post the
I have a simple problem (I think). I would like to get the CRC of this array of bytes
0x0 0x7E or 0 7E or 0
Anyway the one calculator I use gives me: 78F0 or 78 F0 (Hex). Anyway, I think its CRC16 but im not sure. So if anyway can show me some code to give me a CRC calculation that matches (78 F0 or 78F0), that would be great, Im not sure if you have to include 7E or not
My app displays the bytes downloaded in a label using: Private Sub MyDownloader_DownloadedByteCountChanged(ByVal ByteCount As Integer) Handles MyDownloader.DownloadedByteCountChanged lblDownloaded.Text = ByteCount.ToString() End Sub But I thought it would be 'nicer' if it display the amount as kb/mb/gb, etc.
I have a single that might have a decimal place but might not. I have to put the digit before the decimal into the first 4 bytes and the digit after in the next 4 bytes.
So 1.1 would be 01-00-00-00-01-00-00-00 or 2.1 would be 02-00-00-00-01-00-00-00 or 1 would be 01-00-00-00-00-00-00-00
The digit before the decimal point is stored like an integer in bytes the same with the digit after the point. So 1.1 gets split into 1 and 1 and then stored as 2 DWORDS: 01000000 and 01000000
I have a byte array and I need to get 4 bytes from it at a certain location(16) but I don't want to convert it to a integer or anything just keep it as 4 bytes to store in a variable.
I been given an applet for example [code]what should i put for the 8 bytes method portion? [code]but I think it might be wrong coz I didnt get any reponse from the applet.
I have a problem that i cant solve i am trying to buffer 28 bytes from the com port into the array actual_packet_VPS1(30). It works with the counter set to 0 - 15 but doesnt work when we increase the counter size to 0 -28.
Private Sub MSComm5_OnComm(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MSComm5.OnComm Dim buffer As Object
In web service I have function that return bytes array. Now, I call it from VbScript and I need to catch result of this function. How I can catch result of this function in value that is gone be like a value that function return (bytes array)?
I'm using Visual Basic .NET to work with a USB HID device.Most of the time, I can receive data from it perfectly... but one out of every thousand transfers or so, my code will think it has received data when it actually hasn't.The device writes to an array of bytes. I wanted to check to see if the received packet is empty, by doing something like this:
If myDevice.dataPacket(1) <> Nothing then myDevice.rxDataReady = False