Find A File Without Knowing Where It Is On All Drives?

Aug 3, 2010

SPECS: Visual Basic 2008 - SP1/2, Framework 3.0.3.5, Windows XP Pro, SP3? trying to wright code for checking for existing files but what has me stumped is the (WHAT IF PART) of it witch in fact is what I want to see. What im saying is can I find a file without knowing where it is on all drives? Or how can i find a folder if I dont know where they installed it to.

Example: I know that C:Perfect World International <--- is the default location where my game installs but what if I installed it on D:Perfect World International; or rather on drive G or H. How would I test to see if it exist without making a bunch of nested If statements to test every drive for it.

this also applies to files like: D:Perfect World EntertainmentPerfect World Internationalelementelementclient.exe is there a way to find these files to see if they exist. I know that Perfect world international does not use the program files to put there program files in as you see above. so Envirnment variables I think cant be used correct me if I'm wrong. BUT I know the registry of a computer keeps some stord information as to where these applications are installed to like (References App Data).

What I'm trying to do is use this to tell the user in a Label that the game is installed in this path but I know in some circumstances the game is not installed on drive C: or D: or even in this directory some users can install it in there own directory such as C:PWI. and as such the file elementclient.exe can even be in C:PWIelementclient.exe. So to sum it all up can this be found useing some sort of code to find the file and folder and return them both in 2 difrent labels like this

Game Is Installed In: C:Perfect World International
Game Client Name: elementclient.exe, C:Perfect World Internationalelement
Game Found On Drive: C:
ETC.

I'm thinking and keep thinking that this can be done in many ways but as for environment variables I'm stumped. But perhaps windows registry may play a role in doing this but I myself don't even know where this stuff may be found; and even more how to apply it to code.

View 5 Replies


ADVERTISEMENT

VS 2008 Find Out File Extension Knowing Filename Only?

Jul 5, 2010

I am looking for an advise on how to find out the extension of the file only knowing the name and the location of it. I tried getextension method and some other but they don't seem to do anything to me.

E.G.:
Dim FileFullPath As String = "\SERVERPublicCRM_LibraryOrderMGMLetters" & datagridLetters.CurrentRow.Cells.Item(0).Value.ToString() & ".pdf"

[code].....

View 6 Replies

Find Paths Of Substituted Drives?

Sep 7, 2010

I'm in need of a way to find the original path of a substituted (Virtual) drive, set with the subst command.

Start -> Run -> type "cmd"
[code]
subst l: c:\scripts
[\code]

This create a virtual drive that points to c:\scripts\

in .net an easy way to get all the drives on the computer is using the Drive property of My.Computer.FileSystem. However, this will give you the current substitued name of the drive. Is there a way to find the original path?

I get the path of the virtual drives mapped to network folders using WNetGetConnectionA of mpr.dll, However, this only resolves mapped network drives.

I currently don't have away to find the original path of LOCAL virtual drives.

View 3 Replies

Find Name By Knowing From Top Item Is Number 3

Jan 6, 2011

If I have four items in the listbox, e.g. a, b, c, d, how can I find the name by knowing from the top the item is number 3 (c)?

View 6 Replies

Find Out If A Folder Exists Or Not In Available Drives On The Client Machine?

Dec 22, 2009

I want to simply find out if a folder exists or not in available drives on the client machine. user will simply pass a string eg:

searchfolder
C:TestFoldersubfoldersearchfolder
C:TestFoldersearchfolder
C:searchfolder

[code]....

View 2 Replies

How To Set A File Path Without Knowing If HDD Is C / D / E

Nov 19, 2010

I am a complete beginner and I was wondering where do I need to look to learn how to set a file path without knowing if the HDD is C:, D:, E:.. I'm using VB2010

View 5 Replies

Search All Drives Using File Extension

Jan 24, 2012

In VB.NET, how can I search all hard-drives (regardless of whatever a machine has C, D or more) for specific file types (for example .mp3)? I want the file path to be return along with the file size.

View 2 Replies

Search Mapped Drives (U) For A Txt File

Jan 28, 2012

I need any kind of script that will search through the network drives for a txt file called "Don'tDelete.txt" There is one drive the "U:\" drive and on there is 100 different folders with the "Don'tDelete.txt" file in it. Now every "Don'tDelete.txt" is different. I need the script to find these files, combine them all together into one new txt file locate in the "U:\Newfolder" so later on I can drop the new txt file onto my flash drive.

[Code]...

View 1 Replies

Any Way To Check If File Exists Only Knowing Extension?

Jan 8, 2010

Is there a way to find out if a file exists if you only have the file extension? I tried this but it doesn't seem to work.
If My.Computer.FileSystem.FileExists(drive.Name & "*.cde") Then

View 6 Replies

Pen Command Prompt Using Vba Without Knowing The File Path?

Jan 22, 2009

Is there a way to open Command Prompt using vb.net or vba without knowing the file path?. Is there a command like Open cmd.exe

View 3 Replies

File I/O And Registry :: Copying Files From Storage Drives?

Jun 18, 2009

im looking for code to copy the files from the floppy drive to a removable drive on the computer.For example:

Copy A:contents to Z:contents

View 3 Replies

.net - Open Outlook Without Knowing The Exact File Path?

Aug 17, 2011

is there a way in vb.net to open microsoft outlook without knowing the file path exactly? different versions of outlook use different file locations, then you have to worry about the program files and program files(x86). is there a way to just launch outlook using the system.diagnostics.process.start("..") without the file path?

i dont want to have to test folders:

If Folder_Exists("C:Program FilesMicrosoft OfficeOffice12") Then
If Folder_Exists("C:Program FilesMicrosoft OfficeOffice11") Then

View 3 Replies

VS 2008 - Accessing File Path Without Knowing Full Name

Jul 16, 2010

I need to access a file path, but a part of the path is different on each PC. Mozilla creates a random profile name for each PC it is installed on. I can get most of the path through environment variables. I need to access the files inside of the default profile, but can't since I'm not sure how to access it.

Here's an example of the file path:
'C:Users\%USERPROFILE%AppDataRoamingMozillaFirefoxProfilesxxxxxxxx.default'
The only thing that stays the same with the profile name, is the '.default' part.

View 4 Replies

Use The File Explorer Form To Browse Files In Multiple Drives?

Aug 8, 2011

Im trying to read a usb in a port using a file explorer. does anyone know how i can use the file explorer form to browse files in multiple drives that i specify? and how can i read and browse a usb port in vb.net (i.e. Write files to a usb or create an app directory on the usb.)

View 5 Replies

VS 2008 Find Xml File And Display The Find Result?

Oct 24, 2010

how to search xml file and display the result in list box.then export a xml file to excel in the search result

View 4 Replies

Getting The OpenFileDialog To See Network Drives?

Mar 25, 2010

I don't have any problem with the OpenFileDialog provided I set the .InitialDirectory to somewhere or other on my machine.However I just can't set the .InitialDirectory to a URL even as "http:localhost/..." ie my machine.Is there some way of getting the OpenFileDialog to see Network Drives, URLs, etc?

View 7 Replies

Display All Drives And Folders Using VB?

May 8, 2010

I want to display all the drives and folders , and user can select the file also

i got this code from one of forum, but it is showing all the files but not folders and directives

{code]...

View 9 Replies

Get List Of Hard Drives?

May 5, 2011

I'm trying to get a list of current hard drives (that part is done), but then go through the list one by one and remove those that have no size (dvd drives for example). I'm sure this is horribly wrong (4 errors are shown in the list). Could someone give me a hand?

Here is what I have so far:

ComboBoxHD.Items.AddRange(System.IO.Directory.GetLogicalDrives)
Dim dInfo As New System.IO.Directory
For Each drive As System.IO.Directory In dInfo.GetLogicalDrives()

[code].....

View 2 Replies

Get Mounted And Unmounted Drives?

Nov 12, 2009

I want to get mounted and unmounted drives using vb.net. Using getlogicaldrives methods we can get mounted drive. but i want to get unmounted drives also.

View 1 Replies

How To List Network Drives

Nov 4, 2011

How to list all network drives.I have the below code, but is there any other alternates..[code]

View 6 Replies

Show Progressbars For All Drives

Sep 2, 2009

I'm trying to show progress bars for the drive size but automatically get the number of drives abd and show progress bars for that number of drives. I've been playing with it for hours,

[Code]...

View 4 Replies

VS 2010 Drives With Pagefiles On?

Jan 15, 2011

I am trying to use the WMI code generator, and it has given me some code, the idea is I want to see where the pagefile is and its size etc. The code I have is

[Code]...

View 2 Replies

Display Size Of Logical Drives?

Aug 18, 2010

Display Size Of Logical Drives

View 23 Replies

Displaying Drives And Subdirectories In Treeview Using .net?

Jun 21, 2010

i want to get all drives and their directories and sub-directories displayed on a tree view just as windows explorer.

View 1 Replies

Function To Refresh Drives In Explorer.exe?

Sep 13, 2009

there is function that forces explorer.exe to refresh (and new drive icon appear). Then I can access it.My issue is that I have start up script(gpedit.msc-windows settings-cripts to mount several disks by using SUBST command.But Windows Explorer not shows them after start up.- It's enough to kill explorer.exe and then start it again.

View 6 Replies

How To Change Program So That It Runs Off Of All Drives

Apr 18, 2010

For some reason, I can only run my program at college where I created it. It runs off of E:/ (usb port) so when I take it home, it won't run as at home, my E:/ is a CD Drive. How can I change my program so that it runs off of all drives?

View 4 Replies

Project Was Disabling USB Flash Drives From Being Used?

Apr 22, 2011

I'm working on a project and would like to know the best way to tackle disabling the cd burner in windows.The first step I took in the project was disabling USB flash drives from being used.

View 1 Replies

Running Program Directly From CD Drives

Mar 10, 2010

I am writing a program and want to run the program from the cd drive rather than installing it. What I want to know is how can I work out someones cd drive path, and code it to the rest of the file location so that I wont get errors. Also where would I put this code. So my hard drive path is
C:Moonshine
Obviously users drive letters change, hence my problem.

View 7 Replies

Search For And Monitor Removable Drives?

Feb 20, 2009

I am writing a program in VB 2008 and need to search for SD Card Slots and monitor them. When a card is inserted I want to check for a files and folders and make a button active to upload the data. I take it this needs to be working in the background as I want to be able to perform other functions while monitoring fo the drives.How would I do this and can you check if a removeable drive is SD/MMC, CF, MS, etc?

View 3 Replies

VS 02/03 Listing All Logical Drives With GetLogicalDrives

Feb 16, 2010

I am listing all logical drives with GetLogicalDrives() function and i am getting that----( A: , C: , D: , K: , M:)[code]If i checks "Get FilesCount (Drive_name)" for A: (Floppy Drive) then I gets error "DRIVE NOT READY".I want CODE WITHOUT THIS ERRORRR Even if floppy drive is empty or a CD/DVD-ROM is empty.

View 1 Replies







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