File I/O And Registry :: Safe & Secure Way To Perform File Transfering Between Computers?

Feb 5, 2009

My application runs on a "server" machine and provides files (10megs - 100megs each) to 8 other computers. Currently this is done using a standard shared folder on all 8 computers and the server simply copies the file to \ComputerNameSharedFolder - and everything is great.However, due to new policies we need to remove all shared folders, so using a simple \ComputerNameSharedFolder is no longer feasible. Therefore I need to find a way for my application to be able to share these files in a safe, secure, and compliant way.There has been talk of using sFTP which would require each system to have an sFTP server running at all times (controlled by the application somehow), or also SSL was talked about as it can be integrated into the application easily, etc...

View 1 Replies


ADVERTISEMENT

File I/O And Registry :: Safe A String Or Byte-array To File In Utf8 Format?

Sep 4, 2008

trying to find a decent answer for my question; I do have a utf8 file which I (down)load, manipulate and wanting to save back again.The result always is that the file I produce is not in utf8 format;

Dim fs2 As New FileStream("c: est.dat", FileMode.Create, FileAccess.Write, FileShare.None)
Dim w As New BinaryWriter(fs2, Encoding.UTF8)

[code].....

View 3 Replies

Made A Web Browser In VB Express Edition 2008 - Make It Safe And Secure?

Jul 30, 2009

i recently made a web browser in visual basic express edition 2008 for my family computer use purposes only. Id like to make sure that using my web browser and entering personal information on it will be safe. How can i make it safe and secure? Additionally i was wondering if id have to develop my own addons or if its compatible with Firefox addons.

View 1 Replies

When Double Click On Safe File Name It Will Open File Specified In Path In Second Column

Feb 21, 2010

Well im making a program that will Add the Safe File Name of the File opened in the Open File Dialog to the first column of the listview and the File name and path to the second. What i want it so when i double click on the Safe file name it will open the file specified in the path in the second column.i already got the add file to it.

View 4 Replies

Perform Two Hashing Operations Concurrently On A Single File Without Reading The File Twice?

May 18, 2011

I want to perform two hashing operations concurrently on a single file, without reading the file twice. Is there some way to share the FileStream between two synchronized hashing threads? For example:

Dim Stream As New IO.FileStream("...", IO.FileMode.Open)
Dim HashA, HashB As Byte()
Dim A = New System.Threading.Thread(Sub()

[code]....

Maybe some way of caching a stream? Trouble is, I don't want the entire file in memory at once (it could be many gigabytes in size) and I don't want the file read more than once, due to speed issues. I want the file cached only sufficiently to ensure that both threads can work.For example, suppose at some point in time, thread A had read 100k of the file, but thread B had only read 20k of the file. The portion of the file between 20k and 100k should be cached; but then progressively forgotten as thread B catches up. Then again, if thread B is too slow, we might still end up with hundreds of megabytes being cached.Maybe thread A should be made to wait while thread B catches up. Maybe the ReadByte() function of the stream should block for a while if one of the threads is too far behind?

View 13 Replies

File I/O And Registry :: Binary File Primer - Read The Nth Record Without Reading The Whole File?

May 4, 2009

I need to write data to a file, preferably in binary format, but I am unaccustomed with the concept. Where's the easiest place to get the basics? I could come here with a specific need, but I'm at the point right now where I am more willing to work within the confines of keeping it simple.

Here's what I know:
1. how to open a new file
2. how to specify the record length
3. how to close the file

Some specific questions:

Does the record length have to be constant throughout the file?

Can I read the nth record without reading the whole file?

View 8 Replies

File I/O And Registry :: File System Object Does Not Allow Spaces In File Names

Feb 3, 2010

I am working on a VB Console Application that takes an Autocad drawing type DWG and converts it to a PDF using a shell command that calls a third party application. In this case, acmecadconverter.exe from www.dwgtool.com. Then the PDF that is created needs a unique watermark, so I call a second application for that called pdftk.exe from www.accesspdf.com/pdftk/.

Everything works as intended, except when I try file names that contain spaces. The file system object does not tolerate spaces in the drawing file name. For instance, the following command gives me a system.io.filenotfoundexception...

My.Computer.FileSystem.RenameFile("Test Flowchart1.dwg", "Test~Flowchart1.dwg")

It's the same problem for all of my File System commands. Either file not found or invalid arguments.

The complete script I'm using is here:

Code:
Sub Main()
Dim arrArgs() As String = Command.Split(","), _
i As Integer, folderPath As String, myPart As String, _

[Code].....

View 2 Replies

File I/O And Registry :: Multidimensional Arrays - Save File/Load File?

May 13, 2012

I'm currently developing an editor for an AFL management sim.I want to be able to load three or four multidimensional arrays to the program, then save them to the same file. I tried the tutorial on here but got completely muddled up. Why can't it be easy like in VB6 When it was like 10 lines of code tops!

View 5 Replies

File I/O And Registry :: Random Access File Larger Than Text File?

Jan 7, 2009

I am writing a program to calculate Pi to several hundred billion decimal places and this will require lots of GB of memory. I wrote a test program in VB2008 that saved the first 16 digits of Pi (without the decimal point) to both a text file and a random access file, just to be sure it was outputting the numbers properly. For reference the first 16 digits of Pi are:

View 8 Replies

File I/O And Registry :: VB 2008 Express: Formatting A .txt File Written To A .txt File?

Jan 22, 2009

I have a program that can save to a .txt file.The issue is I need it to be done in a tab delimited way.Basically:

TextHere<Tab>TextHere<Tab>TextHere<NextLine>
TextHere<Tab>TextHere<Tab>TextHere<NextLine>

I have this so far, but all it does is put the TextBox1.Text next to TextBox2.Text

Code:
SaveFileDialog1.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*"
Dim FileWriter As StreamWriter
Dim results As DialogResult

[code]....

View 7 Replies

File I/O And Registry :: When Is File Ready For Using - Check Or The File Is Total Copied ?

Dec 6, 2010

Our program will start with the help of a FileSystemWatcher object. How can we check or the file is total copied, for example the file is 100 Mbyte it take a time it's ready for use. Idea:

Do While True
Try
N = testForUse(BigFile)
If N = 1 Then Exit Do

[CODE]...

View 3 Replies

File I/O And Registry :: Reading File Properties Without Loading File

Sep 19, 2010

I want to be able to able to read the dimensions of a TIF image without loading the entire file.

PS Using Visual Basic 2008 on Vista64.

View 11 Replies

Safe Way To Check That A File Isn't Still Uploading?

Mar 15, 2011

Is it safe to use something like this to ensure that a directory isn't currently being written to? [code]I'm processing images which can be up to 10MB so my main concern is that I'm not sure whether the LastWriteTime property (which presumably references the filesystem 'last modified' meta data) is updated when the first, last or every byte of a file is written to disk.Files will generally be uploaded via IIS7 FTP to an NTFS Filesystem on a Windows 2008 server. If it's filesystem-dependant though it would be good to also know which filsystems update when. I'd hoped that this could be used to simplify the programme by ensuring that the whole directory was processed at once. In the end I decided to rethink that since the workarounds are messier and less reliable than the one I was trying to avoid!

View 3 Replies

C# - Safe Way Of Detecting File Access Permissions?

Jun 9, 2011

Below is the part code I currently use to write to a file,
Try
Using sWriter As New IO.StreamWriter("C:Tmp.txt", False)
sWriter.Write(m_Buffer.ToString) : sWriter.Flush()
End Using
Return True
Catch ex As IOException
End Try

But some time this results in error
Access to the path 'C:Tmp.txt' is denied

My question is, Is there a safe way of detecting File access permissions, without handling exceptions, I mean if I can some how check before opening a file for any filehandle opened for it.

View 2 Replies

Download File From Secure Website?

May 9, 2010

I am trying to download a file from a secure website but I don't know how to do it becuase it gives me the error. Can not establish trust relationship for the SSL/TLS secure channel.

[code]...

My problem is that I can't set the credentials before I have to assign the variable the value so it throws an error.

View 2 Replies

How To Secure A File That Generate With A Service

Apr 12, 2010

I am programming a service for a company that will log valuable performance data on machines that they lease out to other companies. It is critical for them that this information is as safe as possible and that it can only be read by us (a program created by us that is). I already made a trippledes encryptor that works fine but i still have the issue that a person can delete or move or corrupt the file if he somehow manages to get out of the operation software and gain acces to it.So my question is: Can i lockdown a file and make it as good as impossible to change the file or delete it other then by being the admin or the program that is generating them?

View 1 Replies

More Secure Option Than Text File?

Oct 11, 2009

Im creating a program that stores usernames/passwords for different devices which will require a login to get into the program but I need to save the usernames/passwords somewhere. Is there a more secure way to store this than in a text file? Or I could try encryption which could be quite fun.

View 3 Replies

Secure App.config File In Application?

Feb 4, 2012

How to secure App.config file. As it contains all the passwords that connections use so any body can see the data in my databases. If we donot save the password at the time of making connection string, will it still be able to connect with the DB the same way?

View 1 Replies

VS 2008 Secure File Deletion?

Feb 26, 2010

I was looking online for a application that can delete a file more secure then. Kill(C: est.txt")Then i had a thought.Maybe i can make my own.Is it possible to make a secure file deleter in vb.net or should i look into C++

View 5 Replies

VS 2008 Secure Upload Of A File To FTP?

Nov 30, 2009

What would be the best way to input the password when uploading a file to FTP? The file gets uploaded behind the scenes without the user inputting any details (the username + password gets used)

So far I've used the network.upload method but the password is in plain text and obviously readable. I need to upload the file without anyone obtaining the password when doing so, would obtaining the password from a mysql database or some sort of encryption be better?

View 5 Replies

File I/O And Registry :: Error Is Coming Registry Access Is Not Allowed.While Opening A Key

Jan 21, 2009

Error is coming Registry Access is not allowed.While Opening a Key.

Code:
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
NewDelete("HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRun", "Sonia")
End Sub

[CODE]...

View 1 Replies

File I/O And Registry :: Writing (Default) And Dword(binary) Entries To Registry

Jan 31, 2009

I've had a bit of a look around the net and on the forums but I've yet to find an answer to my question. I've got Visual Basic 2008 Express and I'm trying to write some registry entries, I can write strings fine just using

[Code]...

View 1 Replies

Download A File Prgrammatically From A Secure Site?

Jul 30, 2010

I have a program that logs into a secure site, looks on the user's home page to find a list of links to reports that can be downloaded and then selects each one - this is currently a manual process but with 100 reports a time it takes a while. The idea is that all the reports will download to a specified folder with generic names so the user can play with them on their own computer rather than having to search through them online.

Anyway, everything's gone well as far as using a WebBrowser to connect to the site, log in and get the list of URLs however it falls down when it tries to link to them. I have tried two methods:

1 - Navigating straight to the URL, this gives an error message every time (asking me to try again)

2 - Directly downloading the URL with a WebRequest class (below) however this doesn't download the actual file, but rather a copy of the login page.

Current Code:

Public Sub DownFile(ByVal sFile As String, ByVal sRemoteUrl As String)
Dim wr As HttpWebRequest
Dim ws As HttpWebResponse

[Code].....

View 1 Replies

Unable To Secure/lock Down A File That Is In Use/open

Oct 4, 2011

I am writing a program that acceses a file in VB/Visual Studio 2008 on Win7 and running it as a user who has admin credentials. I am opening the file with the following code:

Dim Input As New FileStream("C:FileTest est.txt", FileMode.Append, FileAccess.Write, FileShare.None) To test to make sure I can't access this file, I tried to open it with Notepad and I was able to and got no errors. I wrote a new value using Notepad and even saved it and I didn't get any errors form Notepad or my VB program.

I then went on and treid to open the same file twice from my VB program as:

Dim Input As New FileStream("C:FileTest est.txt", FileMode.Append, FileAccess.Write, FileShare.None)
Dim Input2 As New FileStream("C:FileTest est.txt", FileMode., FileAccess.Read, FileShare.None)

And I receivded an error in my VB program as expected. So the FileShare.None switch kind of works. Although I was still able to open the file with Notepad while my VB program had it open. I was aslo able to open Windows Explorer and reame it and even delte it while my VB program had it "open", in the write mode no less without my VB program knowing anything about it.

Why are other applications able to ignore the FileShare.None switch? Seems pretty useless if that's the case. And a huge secruity problem

View 9 Replies

File I/O And Registry :: Open / Read Binary File / Care To Check Code?

Jun 14, 2009

I've gone through about 16 hours and two packs of cigarettes trying to figure this out. First a little background. I was using 6.0 up until 2004 when I went to prison. I'm out now, and trying to relearn the trade, using VS 2005. I'm currently porting some 6.0 code from another project, SpyCast Webcam Studio, into VB 8.0. It's disheartening, to say the least. None of the old built-in subs/functions work anymore, so I have to scour the forums to relearn each and every function.The section I'm doing now takes a snapshot from the webcam (Video API --> PictureBox --> Save as Jpeg), then upens the file to upload it to the server via HTTP POST. I've been using this code in SpyCast for years with no trouble, but I spent many hours trying to piece together the right code to open the binary file to read its contents. I pieced together two methods I found around the forums, one using FileStream() though the code I found wasn't for binary files, even though it said it was, so that code doesn't really work. Method two uses Microsoft.VisualBasic.FileOpen() and works better.

Here's the kicker. By the time I run through the rest of the rigamarole of uploading the file, by the time I read it on the webserver, it's *slightly* corrupted. It's a valid Jpeg, no errors, but the picture looks like when I use to watch the Playboy Channel when I was a kid scrambled with weird colors and whatnot. [code] Each "chunk" is basically one "line" of the file. It looks like a single LineInput() return is the text between two carriage returns. Am I correct? I tested this with a flat text file, and it looks true. However, That one input line returns the text or data with the carriage returns *stripped*! ***?!? =( Fine, I have no problem adding my own vbCrLf to each LineInput(), if I were opening text. but this's binary. A character could be Chr(10) or Chr(13), both of which are removed from the original file contents.So I could very well need to use something other than LineInput(), but I haven't found any other examples on the web using this method.

View 1 Replies

File I/O And Registry :: Text File Tab Delimited Import Visual Studio 2010?

Nov 28, 2010

trying to input a text file that's tab delimited that looks something like this.

2.2 5.6
3.7 9
1.2 9.1

[code].....

View 1 Replies

Windows Xp - Get Full Permissions To Modify Boot.ini File And A Registry Value And To Delete A File

Jun 13, 2010

i am working on an application called logonscreenchangerxp i made my program and when i run it on xp virtualmachine i get errors the program is made using vb 2008 and using .net framework 2.0 i am not able to get full permissions to modify boot.ini file and a regisrty value and to delete a file

View 5 Replies

File I/O And Registry :: Email Accounts Stored In Registry

Jul 14, 2011

Currently, I am try to get the email addresses that have been saved or stored by the user of the computer. This isn't the emails that the user has sent or received, or the contacts he/she has in his address book. Just simply the email accounts that have been accessed from the computer.I know that there are some locations stored in the registry that have the email account. The email addresses that are used on the current computer. I just can't seem to find them on my computer.I am not sure if the registry is the only place to find it or if it stored on the web browser such as internet explorer or google chrome.

View 1 Replies

File I/O And Registry :: Reading Multiple Keys From The Registry?

Aug 27, 2008

I am writing an application that connects to a specific com port. This com port can change depending on how many physical ports are on the PC, and if other USB devices have installed com ports before this one.

I have the communication to the com port all working great, but I need to get the com port description not just the "COM#" which is all I currently get.

I found in the registry where the description is stored but am having trouble doing what I need.

In this key:

Code:
HKEY_LOCAL_MACHINESYSTEMControlSet001ControlClass{4D36E978-E325-11CE-BFC1-08002BE10318}

there is a varied number of sub keys. The are numbered 0000-NNNN depending on how many ports you have. Inside each of these keys, there are multiple values, although I am only interested in one or 2 of them.

My problem is, that I do not know how to get a list of the subkeys (the 0000-NNNN keys/folders) from the original key I posted. I have looked through a few registry tutorials, and I can view the default value in the listed key, but I could not find how to list the subkeys of the listed key.

Does anyone have any sample code they could share that shows how I can get a listing of subkeys, and then run through those subkeys checking for a specific value in one of the strings contained in the subkey?

I am using VB.net 2008 and Windows XP.

View 1 Replies

File I/O And Registry :: File Stream - Backup Program That Zips Files ?

Feb 9, 2009

I am writing a backup program that zips files. Using some sample code I have the following that creates a zip file. Problem is it does not get any subdirectories or files. Where am i going wrong?

Dim azFileNames() As String = Directory.GetFiles(SourceFolder)
Dim objCrc32 As New Crc32()
Dim zipStream As ZipOutputStream

[CODE]...

Alternativley, there is another component to the zipping dll that I could probably bypass the above altogether. It is: FZ.CreateZip(DestFile, SourceFolder, True, "", "") Where DestFile is (Output stream as system.io.stream). I'm trying to read all the files, directories, sub dir and files, etc from a specific location, let's say 'My Documents' into Destfile in which the FZ.CreateZip zips the file. FZ is FastZip which is from icsharpcode.net. They have c# examples, but that's greek to me. I'm trying to just learn VB!

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved