Get Last Accessed Directory Path?
Oct 20, 2009
I want to get the last accessed directory path, what code should I use? The directory path I mean is just like when we use OpenFileDialog, default path of it is the last folder we accessed. I've tried to search but get no result.
View 4 Replies
ADVERTISEMENT
Apr 5, 2012
I'm copying over some files to a target directory on a daily basis.Before I move the new files over, I'd like to delete the old files under the target folder, possibly using System.IO.Directory.Delete()But my problem is, the target folder is on a public drive where everybody in the company could access, and I don't want to empty the folder while someone else might be using those files.I'm thinking whether there's a Class that check the status on the files in a specific directory before I come in and delete everything.(I know I would get an IOException if I disregard the status of the files and try to delete them)
View 2 Replies
May 9, 2006
I'm a developer for a College we have an active directory.I need to query Active Directory with the Pc name and return it's path in the Active Directory tree.
View 3 Replies
Jun 11, 2011
i want save image in directory path and also save path in database...sqlserver 2005 and retrieve in in same folder and path?
View 1 Replies
Apr 12, 2011
I've been testing the code below (vb 2010) and everything works except for the fact that I cannot get the statement "Dim dirName As String = Path.GetDirectoryName(Application.ExecutablePath)" to work. The dialog is "Path is not declared.it may be inaccessible due to protection level".As you may note I have it commented out below and went with the more explicit statement. Note that the code is from another author and I'd like to understand how to make this work as originally provided.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim fileName As String = "flatfile.txt"
'Dim dirName As String = Path.GetDirectoryName(Application.ExecutablePath)[code].....
View 4 Replies
Jul 16, 2009
How do i get the directory name, without the full path?[code]....
View 8 Replies
Jun 1, 2010
I've got a listbox showing events that have been added on my sports event planner, but how do I get the listbox to just show the directory name, not the entire path? [code]I found this code on the internet, and the 2nd msgbox displays exactly the information i need.how would i go about using that method with what i've already got.note that the 2nd code isn't written with arrays in mind, and the 1st is.[code]
View 5 Replies
Sep 24, 2009
I need a method to know iis current wwwroot in VB.Net.
I need to get this information outside a web project (otherwise the problem would have a simple solution). I think I need to read this information from the registry, but I have no idea where to start looking.
View 1 Replies
Nov 14, 2009
I am using this code to have all the subdirectories in c:program files and i am listing them on a treeView Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
[Code]....
View 18 Replies
Jan 31, 2010
I would like to log events to a .txt file. I think I have this covered for the most part. If I run my application in let's say /Program Files/App/ it will log events to log.txt within the /App directory. However, if I made a desktop shortcut of my app, it writes log.txt to the desktop. How do I set it so my path for my log.txt will always be within the same folder as the .exe and not where the application is run from (like with shortcuts)? how to I get the .exe directory to add it to the path of log.txt?
View 3 Replies
Jul 6, 2011
How can i insert a pause/Resume command when copying files/directories?
View 3 Replies
Mar 23, 2009
When im naming a variable for a directory should i end the variable name with path, folder or directory.
View 4 Replies
Jun 12, 2009
i want to get path of current directory .
View 2 Replies
Dec 15, 2011
Given that I have a file in path: C:ApplicationsGeneral UtilsAssembly1Assembly1BinDebugAssembly1.dll
and I am working in the following path:C:ApplicationsUnder DevelopmentApp1App1
is there some easy way to find the dotted path route from the application to the assembly:
General UtilsAssembly1Assembly1BinDebugAssembly1.dll
View 1 Replies
Jun 8, 2010
I am finishing a project for a client , however I am having an issue with the registry. How do I get installation directory path from the .net registry?
View 10 Replies
Oct 3, 2010
here i am getting this path
System.Windows.Forms.Application.StartupPath
"D:ProjectsCompan1Compan1binDebug"
but i want to load report1.rpt that is reside in Reports folder under application root like we did in asp.net application
Dim rptPath As String = Server.MapPath("~/Reports/rpt1.rpt")
If ds.Tables(0).Rows.Count > 0 Then
'Report.Load(System.Windows.Forms.Application.StartupPath & "/Reports/" & ReportName & "")
[code]....
View 14 Replies
Mar 25, 2009
I'm using this code to make my app. run at startup if a CheckBox is checked
Private Sub CheckBox5_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox5.CheckedChanged
If CheckBox5.Checked = True Then
CheckBox6.Checked = False
CheckBox6.Enabled = False
[Code]...
View 19 Replies
Jun 9, 2009
I have a treeview, a button and a textbox. When you click button1 a folderbrowserdialog opens and after choosing the folder the path to the folder and anything in it is show in the textbox and with this
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim sDirs() As String
[Code]....
adapted from Major treeview/list view head ache I managed to make the treeview display the folder and the sub folders... but it isn't very hierarchial. Check attached pictures. Image1 shows how it is and image2 shows how I want it to be. Can anyone tell me how to get it to look like image 2?...Image2 was made in Windows Explorer. Image1 is a screenshot of the runing program that I am trying to make. I have been googling around but no luck so far. Practically I think what I shoul be asking is how to create child nodes of subfolders. The program is going to copy whatever the user checks in the treeview into another folder chosen by the user. I am using Visual Basic 2008 Express.
View 2 Replies
Feb 21, 2011
I have a VB 6.0 code that creates file/directory on given path. If the path is local or a mapped drive then it's working fine but if I am having a network path like \netpathputfileshere" then it is not working. If I mapped "\netpathputfileshere" to some x: drive on local then it will work fine BUT I need not mapped this path. So is there any way to do this directly on network path. I get error for ChDrive "\netpathpullfileshere"
View 2 Replies
May 6, 2010
I have a dynamic path and every time I want to check it and if it is the root of drive warn user, so I am doing this:
Code:
If MyPath = Directory.GetDirectoryRoot(MyPath) Then
'Warn user
End if
MyPath is returned from a control like FolderBrowseDialog so I'm sure it cannot be an invalid path...
View 4 Replies
May 2, 2010
I have a directory listbox, I try to set the path to a directory inside the project. how do I do that?
View 7 Replies
Jun 8, 2010
I have a directory named reports inside my winform project in .net. My project name is AccountingReports and inside that Directory reports exists. So i need the way to access this path via code. In Asp.net we use Request.PhysicalApplicationPath property. So is there any method or property exists that will give me the root of my project
View 2 Replies
Dec 15, 2011
I am using Environment.CurrentDirectory to get the current directory, i.e. "D:ChuttuProjectsLICinDebug"
But, I want to remove "inDebug"
How can I do that? Or is there any way so that I can get the directory up to "LIC"?
Actually this is my connection string:
Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|LIC.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True
But when I use this and try to insert data into the DB, the data is not inserted. When I use the connection string with a physical path it starts working:
Data Source=.SQLEXPRESS;AttachDbFilename=D:Chuttu VBProjectsLICLIC.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True
I am trying to get the physical path of the mdf file and use it in the connection string.
EDIT:
This piece of code works fine:
Private Sub save()
Dim con As New SqlClient.SqlConnection("Data Source=.SQLEXPRESS;AttachDbFilename=D:Chuttu VBProjectsLICLIC.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True")
[Code].....
View 4 Replies
May 8, 2011
I in my project i have two text box and 1 button and 1 openfile dialogue Event on Command Button in textbox1 i want a file directory with the file name & extension, which i have done well (like C:\files\readme.txt) but in textbox2 i want only the directory of the same file, means under which directory it stored (like C:\files\)
Here's my example code
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code].....
View 3 Replies
May 8, 2011
I in my project i have two text box and 1 button and 1 openfile dialogue
Event on Command Button in textbox1 i want a file directory with the file name & extension,which i have done well (like C:files eadme.txt) but in textbox2 i want only the directory of the same file, means under which directory it stored (like C:files)
Here's my example code
Code:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code]....
View 4 Replies
Apr 26, 2011
I am trying to select a folder from an initial directory and store the initial directory with the selected directory in Folder1Dir. Also not sure how to dimension OpenFileDialog1.
[Code]...
View 2 Replies
Mar 11, 2010
how to set destination directory path to save file
View 4 Replies
Aug 19, 2009
I'm building an application which require to use Directory.Exists on a network share UNC path. I know how to use that function, and how to implement it in my code, it's working perfecty locally.
Here my setup:
- VS2003
- .NET 1.1
- It's an Outlook Add-In
Here the code :
Dim realpath as string = "\myserverfolder$subfolder"
Impersonation.ImpersonateUser("admin", "DOMAIN", "adminpass")
Dim isDirExist As Boolean = Directory.Exists(realpath)
If isDirExist = False Then
Directory.CreateDirectory(realpath)
End If
Impersonation.undoImpersonation()
If I build this code, and register it in Outlook with my personnal account (admin), it's working fine, I receive true. If I build this same code, an register it in the Outlook of a normal employee (user only), it's always returning FALSE, no matter if the directory exist or not. The share is set to everyone allow, and I tried giving everyone access to the ACL, and it's the same result.
View 1 Replies
Jul 30, 2010
I'm getting an error trying to open a file. The error is due to Windows 7 virtual X86 path. Does this make sense to anyone one? How to solve?
[Code]...
View 3 Replies
Apr 26, 2010
This is the code I have set up to scan a directory of files:
Dim fileArray() As String
fileArray = Directory.GetFiles(System.AppDomain.CurrentDomain.BaseDirectory & "help")
And it successfully gets all files in the directory, but it gets their absolute paths as well. For example, one of the entries in fileArray() is:
F:ProjectProjectinx86Debughelpook_troubleshoot.html
And I want it to just be:
book_troubleshoot.html
Is there a way to do this without parsing through all the array entries to trim off the path?
View 1 Replies