Thank you. I found an example using FTP and yet to try it to connect to the unix server then I'll use the steamReader to read the file. -- Thanks.
Thank you. I found an example using FTP and yet to try it to connect to the unix server then I'll use the steamReader to read the file. -- Thanks.
1.I need to retrieve and open a file stored on a Unix server on a ne
I need to retrieve and open a file stored on a Unix server on a network and opens the file as a delimited text file. I'm using VS2005, .net 2.0 and C#. What's the best way to do this and if there's any sample code online? The user would enter something like; \\serverName\filename or \\ipaddress -- Thanks.
2.Powershell: Script to retrieve path of file given the filename on a remote unix server
3.problem opening freehand files stored in linux server
hi, i have mac and i work using a file server that has a linux. The problem is that when i saved a freehand file, after cloosing the program and reconect to the local server, i try to open the file but freehand ask me for the images the the document has. Is like freehand forget the links of the images or can't find it in a linux server where they are when i create the file. Anyone knows what can i do? thanks
4.WinForm Retrieve Excel file from SQL Server and Open it
Hi, My Excel .xls files are stored as image on the SQL Server. Now I would like to retrieve the .xls files and open it. I use the FileStream and write it on client pc's C;\. How do I open it in the C# code, so that user won't need to go the file explorer to open? Thanks for help. Jason
5.Need reference for storing/retrieving .wav files in Sql2000
I can successfully write the binary data to an image data type, and successfully retrieve it, but when I attempt to play the file in media player after retrieving it, I get the file type isn't supported. I must be losing something somewhere, but the byte lengths match up. Is there some encoding I need to do. Please take a look, and suggestions would be appreciated. //Writing to sql from file FileStream fs = new FileStream("xxx.wav", FileMode.Open, FileAccess.Read); BinaryReader br = new BinaryReader(fs); long size = fs.Length; byte[] data = new byte[size]; br.Read(data,0,data.Length); Database db = DatabaseFactory.CreateDatabase("IvrRecordingDB"); DBCommandWrapper cmd = db.GetStoredProcCommandWrapper("uspInsertRecording"); cmd.AddInParameter("@recording", DbType.Binary, data); db.ExecuteNonQuery(cmd); //Retrieving data and writing to file byte[] data = new byte[0]; Database db = DatabaseFactory.CreateDatabase("IvrRecordingDB"); DBCommandWrapper cmd = db.GetStoredProcCommandWrapper("uspGetRecording"); object audioBinary = db.ExecuteScalar(cmd); data = (byte[])(audioBinary); FileStream fs = new FileStream("new.wav",FileMode.CreateNew); BinaryWriter bw = new BinaryWriter(fs); bw.Write(data,0,data.Length); bw.Close(); fs.Close();
6. Need to Retrieve an Image File on Another LAN Server
Users browsing this forum: No registered users and 26 guest