I need some advise how to get a specific file from a directory?for example i want to take all file that have name like "vid" from directory name "film" and in the directory,there are files like "vid12","vid232" how to get all file that have the word vid?
I am trying to find a specific file in a specific directory and then i need to get the full path of the file.Is this possible i cant find any help topics about a specific file.
Am writing a windows app using vb.net 2005. The app captures a string variable from the user. As each file within a directory is read, I want to match the stored string within each file. If I find a match to the string, I want a list box to be populated with the name of the file. I have added Imports System.Text.RegularExpressions and tried using the match collection.
For example: My direcotry has 5 text files. I want to match a string "PARENT" in the text of all these 5 files. The list box should output the name of each file where the string was found.
what is probably a very stupid and basic question, I'm new to Visual Basic I currently coding a program which deletes specific files that are part of a game. It finds and deletes all the files in the "program files" directorys but there are also certain files in My Documents that must be deleted.
The problem is the filepath to My Documents includes a username which is unique to different users, meaning on any other pc the program will not work.
The path on my computer is: C:UsersShaneDocumentsElectronic Arts
How can I get the program to find this folder on other computers? I'm totally lost.
In vb.net how do you check if a ANY directory exists inside a directory I would need to know if there is a folder inside the c:windows directory (WITHOUT knowing if there is ANY directory is in there).
i have here a code that allows me to draw on a picturebox, but my problem is i want it to save on a specific directory for example: "C:image". how can i do this?[code..]
how to count the content of a specific directory?And how do you delete an old file (ex. say your old program that create a back-up. But it has already created many back-ups and now it takes to much of the space in your hardisk.)
I am trying to copy a directory structure and .txt files to a duplicate directory in a different location.
Example: Source Location: \MyServerProjectsProjectA This directory will contain .txt files in the following locations that will vary from project to project. So the locations would be unknown going in. \MyServerProjectsProjectAdocsallfiles.txt
I am trying to get the savefiledialog (when it opens) to open under the following directory:
C:Garman SoftwareThe Bible Study ToolAnnotations
I set the InitialDirectory property to this in the properties settings and also in code....but the damn thing keeps opening up in MyDocuments.I am using VS2008 (VB)
I use Visual studio 2008 I use MYSQL 5.1 I want only to backup database Test to to a specific directory.I use the application settings to determine which directory(see attachment).Green shaded code works perfect. Red shaded code works not!! This is with My.settings.I can not see the error code, it goes too fast, I can not capture this with:
how to count the content of a specific directory?And how do you delete an old file (ex. say your old program that create a back-up. But it has already created many back-ups and now it takes to much of the space in your hardisk.)
I'm creating a simple .NET console application where I want to save a file in a folder that's part of the root project, like so: SolutionName.ProjectNameTestData. I want to put test.xml into the TestData folder. However, when I go to save my XDocument, it saves it to SolutionName.ProjectNameinx86Debug Console est.xml.
i'm trying to make a program that searches for a specific file in a specific file, so when the program loads it "writes" in checked list box the names of the drives installed to the computer, but what i want to do is: when the user checks the box, i want it to search for the file in that drive, but i don't know how to do it...
I'm using:
Imports System.IO Imports System.Collections.ObjectModel Public Class Form1
[Code].....
how to make it search in the other drives using the checked listbox?
How can I combine multiple *.txt files in a specific directory into one txt file in another directory using VB.NET? (And to delete blank lines at the end of the new file)
I know how to do it in vbscript: Const ForReading = 1 Const ForWriting = 2 Set objFSO = CreateObject("Scripting.FileSystemObject") Set objOutputFile = objFSO.CreateTextFile("C:logsimportoutput.txt") [Code] .....
For Each foundFile As String In My.Computer.FileSystem.GetFiles("C:Documents and Settings oeDesktopMy Music2", _ FileIO.SearchOption.SearchAllSubDirectories, "*.mp3") My.Computer.FileSystem.CopyFile(foundFile, "C:Documents and Settings oeMy DocumentsMy Music" & foundFile) Next
Error message is on the third line: The given files path's format is not supported. I have tried all variations to this without any luck.
copying the file from one Directory to another directory by create the folder if that folder is not exists in destination directory.Example:
Source path: C: emp est1.txt destination path: C:Data if C:Data doesn't contains "temp" or "test" folder, it should create the folder before copy the 1.txt.[code]....
I'll tell you what I'd like to do which is to create a directory listing of every file inside a specified directory and then use a loop to upload each file in this directory to a remote folder via FTP.
I'm simply trying to create a small tool, to create a username / password / OU group, and a few properties on a new user from a form with a few text boxes, and a button.I know how to connect to LDAP, though i'm having a problem getting this done.
I want to get a list of all users and groups that belong to a specific department (entered by the user) from Active Directory using VB.Net and DirectoryServices.
I wonder if it is possible to find a specific row and specific columns in data base file (Access) . You see , I am using a DataGridView control to show only SOME of the columns (fields) of a table from an Access file . For example , lets say that in the DataGridView control I only show the following fields :Field1 , Field2 and Field3 .Now , when the user selects an entry in the DataGridView control , I want to insert the text from Field4 into a text box on the form .
The problem , however , is that I don't know how to get the specific row in the data base file and also I don't know how to get the text in column (field) Field4 of that row .One thing that might be important is that the index of the row in the data base file is not necessarily the same with the index of the current row in the DataGridView control . This is because in the DataGridView control the rows are order by the contents in the ID Field .ol .
I am attempting to compare two directory trees. I have the program map the network drive and copy a directory. I need it to verify that the files copied successfully by comparing the source to the destination. If comparison returns equal then perform action1, if comparison returns unequal then perform action2.
I have some problem with copying the file from one Directory to another directory by create the folder if that folder is not exists in destination directory.
I am using Directory.Getfiles(DirPath,"Pattern")to locate specific files in a folder. This works fine unless no files are found. How can I get my code to determine whether no files have been found?