Monday, November 08, 2010 at 12:05 AM.
system.verbs.builtins.radio.file.getRelativePath
on getRelativePath (f) {
<<Changes
<<9/17/01; 12:05:47 PM by JES
<<Takes the path to a file or folder in the www folder, and returns its slash-delimited relative path.
local (relpath, pc = file.getPathChar ());
relpath = string.mid (f, sizeOf (user.radio.prefs.wwwFolder) + 1, infinity);
relpath = string.replaceAll (relpath, pc, "/");
return (relpath)}
<<bundle //test code
<<dialog.alert (getRelativePath (user.radio.prefs.upstream.folder))
This listing is for code that runs in the OPML Editor environment. I created these listings because I wanted the search engines to index it, so that when I want to look up something in my codebase I don't have to use the much slower search functionality in my object database. Dave Winer.