I have a simple jave program as below:
package us.ma.main;
import java.io.File;
public class DeleteFile {
public static void main(String[] args) {
String fileName = "c:/Barcode/BarcodeSeqence.txt";
File file = new File( fileName );
if( file.exists()){
file.delete()...
I have the following code in a Visaul Basic 6.0 program for mapping to a network drive:
Set objNetwork = CreateObject("WScript.Network")
objNetwork.MapNetworkDrive driveLetter,fullPath, bPersistent, userName, password
driveLetter will be searched at run time, all other parameter values will...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.