Re: fileCopy Programming Software Development by tinstaafl FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork\" + FILEName) That is not a copy of my code. My code says, FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork\" + FILE) Re: copy a file in silent mode(pls help) Programming Software Development by vb5prgrmr FileCopy "Path File Name Of Source File", "Path File Name Of Destination File" Good Luck Re: fileCopy Programming Software Development by achinthaadd …("...bin\debug\Artwork") ; And **"FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork")&…I use this for when cording "filecopy" it have to give target location … cording in like this it working well, **FileCopy(txtGrupAddNewArtWrokUploadImage.Text, "G:\Documents and Settings\… Re: fileCopy Programming Software Development by achinthaadd … = txtGrupAddNewArtWrokUploadImage.Text Else If FILE.Exists(txtGrupAddNewArtWrokUploadImage.Text) Then FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork\" + OpenFileDialogPicture.SafeFileName… fileCopy Programming Software Development by achinthaadd … folder(ArtWork) which in application installed folder. i try to filecopy command using give target path like"c:\temp\image…" command is working but when i chenge command like; *FileCopy(txtGrupAddNewArtWrokUploadImage.Text, System.Reflection.Assembly.GetExecutingAssembly().Location.Replace("ReNewArtWorkProgect… Re: fileCopy Programming Software Development by tinstaafl …are valid. If you still get an error in the filecopy statement comment it out and put in `MsgBox("… Return End If Else If File.Exists(txtGrupAddNewArtWrokUploadImage.Text) Then FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork\" + NEWFILE) End … Re: fileCopy Programming Software Development by tinstaafl … understand what you're trying to do, this might work: FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork") This assumes that… Re: fileCopy Programming Software Development by tinstaafl Sorry, I was a little rushed when I gave you that. Try this, FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork\" + OpenFileDialogPicture.SafeFileName) Re: fileCopy Programming Software Development by tinstaafl … `System.IO` is imported. If File.Exists(txtGrupAddNewArtWrokUploadImage.Text) Then FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork\" + OpenFileDialogPicture.SafeFileName) End… Re: fileCopy Programming Software Development by tinstaafl … Return End If Else If FILE.Exists(txtGrupAddNewArtWrokUploadImage.Text) Then FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork\" + FILE) End If… Re: fileCopy Programming Software Development by achinthaadd i copied all ur code , but it gived befor error again, i could find what is it... FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork\" + FILEName) Re: fileCopy Programming Software Development by tinstaafl … Return End If Else If File.Exists(txtGrupAddNewArtWrokUploadImage.Text) Then FileCopy(txtGrupAddNewArtWrokUploadImage.Text, Application.StartupPath + "\Artwork\" + NEWFILE) End If… Calculating file transfer time Programming Software Development by it@61@sec …for (iSpeed = 1;iSpeed <= DELTABUFF;iSpeed++) { retval = filecopy(iFile,oFile); } // == End time == gettimeofday(&tim,NULL…if (closefile) { fclose(iFile); } return fssize; } int filecopy(FILE *iFile, FILE *oFile){ size = fread(buf,1,… how to change the "ending" of a file name? Programming Software Development by Adm666 … %s\n", prog, *argv); exit(1); } else { filecopy(fp, stdout); fclose(fp); } if(ferror(stdout)) { fprintf(stderr,…stdout\n", prog); exit(2); } exit(0); } void filecopy(FILE *ifp, FILE *ofp) { int c; while ((c =… file / folder exists Programming Software Development by darkseid …Me.fTarget = rightCBselect.Text & lItem.Text FileCopy(fSource, Me.fTarget) rightListView.Items.Add(lItem.Clone…Text & lItem.Selected fTarget = rightCBselect.Text FileCopy(fSource, fTarget) rightListView.Items.Add(lItem.Clone())… Re: Copy file from client to remote server !?!?! Programming Software Development by Aviplo … developing the application using Indusoft studio The $FileCopy and $GetAppPath are the built in function… of Indusoft Studio where $FileCopy : Copies the file(s) configured in the…,NN,i,sql2,numCur $Status ="" NN=$URL $FileCopy( NN ,$GetAppPath() & "Web\media\", 1000… Backup and Restore Database Programming Software Development by Mr.Wobbles … Sub backupDB() Dim portfolioPath As String = My.Application.Info.DirectoryPath FileCopy(portfolioPath & "\Information Sources\portfolioDB.mdb", "….OK Then 'Restore the database from a backup copy. FileCopy("C:\Program Files\PortfolioGen2.0\DBBACKUP.mdb", portfolioPath… BackUp And Restore Programming Software Development by dhanashreegd … Sub backupDB() Dim portfolioPath As String = My.Application.Info.DirectoryPath FileCopy(portfolioPath & "\Information Sources\portfolioDB.mdb", "….OK Then 'Restore the database from a backup copy. FileCopy("C:\Program Files\PortfolioGen2.0\DBBACKUP.mdb", portfolioPath… Copy Image Files from VM SQL Server to Folder on workstation Programming Software Development by ayarton … idea how to do the sql linking since, and the filecopy(source,destination) isn't working correctly. Code is pasted below… buttons as they are being copied 'pbShowImagesAsProcessing.Image = Images(i) FileCopy(ImageImport, Flexihotfolder) End While End Sub End Class [/CODE] Backup Programming Software Development by LeNenne …; destinationfile = App.Path & "\backup\PhoneTel.mdb" FileCopy sourcefile, destinationfile sourcefile1 = App.Path & "\backup\PhoneTel.mdb…destinationfile1 = App.Path & "\backup\backup\PhoneTel.mdb" FileCopy sourcefile1, destinationfile1 how can I get the backup file from… Directory already exist in the path error Programming Software Development by Mr.M ….FileSystem.DirectoryExist("C:\example" Then My.Computer.FileSystem.FileCopy(TextBox1.Text.ToString,"C:\example") ' This produced the… the below. Dim Dest As String = "C:\example" FileCopy(TextBox1.Text.ToString, Dest) MsgBox("File Copied") End… Re: Directory already exist in the path error Programming Software Development by oussama_1 in the destination, you need to put the file directory not the folder that contains it. My.Computer.FileSystem.FileCopy(your file,new file directory) ' ex: i want to copy this file(C:\sound.wav) to (c:\music) My.Computer.FileSystem.FileCopy(C:\sound.wav,c:\music\sound.wav) Re: Copy Image Files from VM SQL Server to Folder on workstation Programming Software Development by alc6379 Can you post the code for FileCopy? There should already be methods to do that type of work in the File class: [url]http://msdn.microsoft.com/en-us/library/system.io.file.copy.aspx[/url] Re: Copy Image Files from VM SQL Server to Folder on workstation Programming Software Development by ayarton …;) Else strFileName = OpenFD.FileName MsgBox(strFileName) End If OpenFD.Reset() FileCopy(strFileName, "c:\flexihotfolder\" & Export) End Sub[/CODE… Finding directory of VB project dynamically Programming Software Development by Mr.Wobbles ….DialogResult.OK Then 'Restore the database from a backup copy. FileCopy(backupName, portfolioDBName) MsgBox("Database Restoration Successful") End If… Re: Finding directory of VB project dynamically Programming Software Development by gireeshb22 ….DialogResult.OK Then 'Restore the database from a backup copy. FileCopy(backupName, portfolioDBName) MsgBox("Database Restoration Successful") End If… Can I invoke the Windows copy function? Programming Software Development by Markp87 … one location to another, and I can do this with FILECOPY just fine. What I'd like to do though, is… Read/Edit specific .xml nodes in vb6 Programming Software Development by mstarmatt … Then Call LoadXMLFiles(strXMLFilePath, "system.xml") Call ReadFile 'FileCopy SourceFile, TargetFile '// If you want to copy from some Different… Import several files to MS ACCESS Programming Databases by snowmman99 … = "status.txt" Do While Len(strfile1) > 0 FileCopy strfile1, strfile2 DoCmd.TransferText acImportFixed, "Specifiation", "tblName… Error 70 Permision Denied Programming Software Development by hell_tej … ERROR 70 'Permision Denied' Occurs :'( [ICODE] rs.close con.close FileCopy "D:\UJF\UJF.mdb", "D:\Person.mdb…