Saving files one level up

G

Guest

Hi,

I use the following lines to save data to a file:
ActiveWorkbook.SaveAs FileName:=NewFileName, _
FileFormat:=xlText, _
CreateBackup:=False

It stores the file in the same directory as the input file that I have
pointed out with the lines:
WholeFileName = Application.GetOpenFilename _
(FileFilter:=Filt, _
FilterIndex:=FilterIndex, _
Title:=Title)

My question is how I can store the file one level up, in the directory above?
Can I type in the file name with path and everything as NewFileName?

Best regards,
/Sören
 
D

Dave Peterson

Dim myPath as string
dim wkbk as workbook
dim WholeFileName as variant
'...
WholeFileName = Application.GetOpenFilename _
(FileFilter:=Filt, _
FilterIndex:=FilterIndex, _
Title:=Title)

if wholefilename = false then
exit sub
end if

set wkbk = workbooks.open(filename:=wholefilename)

mypath = wkbk.path
newfilename = mypath & "\..\" & "whateverstring.txt"

=======
If you remember your old DOS commands, this is equivalent to:

cd ..
to go up one level.

(You may want to add a check to make sure you weren't in the root folder of the
drive--so you couldn't go up a level.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top