Windows Application for Backup using C#
-
-
I need to develop a windows application that will take backup (check for the modified files in a particular folderand compress it ) and copy it to folder on the remote server for which this host server is mapped to .:confused:.can someone guide me ?
anupa wrote:
that will take backup (check for the modified files
Use a
FileSystemWatcher
control to get notified when files are modified.anupa wrote:
and compress it
Use
GZip
compression. :)Navaneeth How to use google | Ask smart questions
-
I need to develop a windows application that will take backup (check for the modified files in a particular folderand compress it ) and copy it to folder on the remote server for which this host server is mapped to .:confused:.can someone guide me ?
File.Copy will copy a file. There's zip stuff built into .NET 3.5, at least. The FileAttributes class will tell you when a file was last modified. your client can just buy something that does all of this for $30, are you charging less than that ?
Christian Graus Driven to the arms of OSX by Vista.
-
File.Copy will copy a file. There's zip stuff built into .NET 3.5, at least. The FileAttributes class will tell you when a file was last modified. your client can just buy something that does all of this for $30, are you charging less than that ?
Christian Graus Driven to the arms of OSX by Vista.
Christian Graus wrote:
are you charging less than that ?
HAHAHA this was best
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L %^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2 W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN% Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-iTV.C\y<pjxsg-b$f4ia> -------------------------------------------------------- 128 bit encrypted signature, crack if you can
-
I need to develop a windows application that will take backup (check for the modified files in a particular folderand compress it ) and copy it to folder on the remote server for which this host server is mapped to .:confused:.can someone guide me ?