Digital Workshop

Welcome to the Digital Workshop Message Boards
It is currently April 3rd, 2025, 8:13 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: File path formating with script?
PostPosted: February 26th, 2025, 12:29 pm 
Offline

Joined: August 23rd, 2011, 11:36 am
Posts: 11
Hi all

I've added a File Browse action with the result stored in a variable and it cointains the whole file path e.g. C:/foldername/anotherfolder/myfile.xyz
Does anyone know a way, maybe by a script, of extracting and storing in another variable just the file name part (myfile) from that?
The path could be any length

Thanks


Top
 Profile  
 
 Post subject: Re: File path formating with script?
PostPosted: March 13th, 2025, 11:23 am 
Offline

Joined: November 25th, 2004, 1:24 pm
Posts: 514
Location: Scotland
Opus: 9.75
OS: Win 10
System: Asus i7-7700K 16Gb
That is possible and quite easy to do, but, off the top of my head, I can't remember the script or actions to do it. You want to parse the variable using the backslash, based on the number of backslashes in the variable, so the bit after the last backslash is the file name. You could also go to the end of the text variable, find the "." and the previous backslash. That might be a more efficient script. I have done this many times, but don't use Opus any more. It's just a complete blank now :D . I will look through my old publications and see what I can find. It will take me a couple of days before I can look.

_________________
Whoever designed this, never actually used it!


Top
 Profile  
 
 Post subject: Re: File path formating with script?
PostPosted: March 13th, 2025, 9:33 pm 
Offline

Joined: November 25th, 2004, 1:24 pm
Posts: 514
Location: Scotland
Opus: 9.75
OS: Win 10
System: Asus i7-7700K 16Gb
Had a wee bit of time to look at this, but can't find the publication where I parsed text variables. I am assuming you are familiar with scripts, variables, buttons, text inputs and having actions attached to the button, all standard stuff.

I started a new publication, but don't have much time to look at this yet, however I did try something which would work, perhaps a bit clumsy and just the very basics just now.
Assuming your file name was in a variable called Path which contained L:\Path1\Path2\Path3\MyFile.txt
create a button with this simple script Attached MyIndex=Path.lastIndexOf("\\")
create a text input with the MyIndex variable in it.
Make sure you get the case of the lastIndexOf() correct. You need to enter two backslashes to escape the action of a backslash.
This script will find the position of the last backslash in the file. Then you need to use substring(MyIndex) to split the file name into the bit before the last backslash. I will attach a very basic example. It's not fully tested, so not error trapped.


You do not have the required permissions to view the files attached to this post.

_________________
Whoever designed this, never actually used it!


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 13 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group