473,811 Members | 2,565 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to open folder ?!

viktorijakup
10 New Member
Hi !!!

This script must open folder, and I must view empty opened folder...!!!
I work in "Far manager".

Now this script only create folder...

Expand|Select|Wrap|Line Numbers
  1.  
  2. @rem = '--*-Perl-*--
  3. @echo off
  4. if "%OS%" == "Windows_NT" goto WinNT
  5. perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
  6. goto endofperl
  7. :WinNT
  8. perl -x -S %0 %*
  9. if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
  10. if %errorlevel% == 9009 echo You do not have Perl in your PATH.
  11. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
  12. goto endofperl
  13. @rem ';
  14. #!/usr/bin/perl
  15. use warnings;
  16. use strict;
  17. use File::Path;
  18. use Cwd;
  19. use File::Copy;
  20. use File::Spec::Functions;
  21. #hardcoded 
  22. my $FP = 'Y:\graphics_qc';
  23. my $TP = 'Y:\plot_db';
  24. my ($from_file, $to_file) = ($ARGV[0], $ARGV[0]);
  25. my $cwd = `cd`;
  26. chomp $cwd;
  27. my ($from_dir, $to_dir) = ($cwd, $cwd);
  28. #rename dir part
  29. $to_dir =~ s/^\Q$FP\E/$TP/;
  30. mkpath($to_dir);
  31. chdir $to_file;
  32. exit 0;
  33.  
  34. __END__
  35. :endofperl
  36.  
  37.  
Regards !!!

Viki
Sep 22 '08 #1
8 6382
nithinpes
410 Recognized Expert Contributor
If you want to physically open the folder (get the view of folder contents), use:
Expand|Select|Wrap|Line Numbers
  1. system("start $to_dir");  # this will open folder in win explorer
  2.  
Else, if you want to open the folder to read its contents(files) inside Perl script, use opendir() command.
Expand|Select|Wrap|Line Numbers
  1. opendir(DIR,"$to_dir") or die "failed to open:$!";
  2. while(<DIR>) { # read through contents of folder
  3.  
  4.  
Sep 22 '08 #2
viktorijakup
10 New Member
Hi !!!

Thank you for answer !!!

Expand|Select|Wrap|Line Numbers
  1.      1. system("start $to_dir"); # this will open folder in win explorer  
I need the same opening folder in "Far manager".

:)


Regards !!!

Viki






If you want to physically open the folder (get the view of folder contents), use:
Expand|Select|Wrap|Line Numbers
  1. system("start $to_dir");  # this will open folder in win explorer
  2.  
Else, if you want to open the folder to read its contents(files) inside Perl script, use opendir() command.
Expand|Select|Wrap|Line Numbers
  1. opendir(DIR,"$to_dir") or die "failed to open:$!";
  2. while(<DIR>) { # read through contents of folder
  3.  
  4.  
Sep 22 '08 #3
numberwhun
3,509 Recognized Expert Moderator Specialist
I don't know about anyone else, but I have no idea what "Far Manager" is and have never heard of it. If it is an external program, then that is up to you to figure out. Otherwise, please explain what your needs are a little clearer.

Regards,

Jeff
Sep 22 '08 #4
nithinpes
410 Recognized Expert Contributor
I do not know about "Far Manager" either. However, if you know of a method to open a file/folder in Far manager through command prompt, then you should be able to do it using the same command inside system() in your script.
Sep 22 '08 #5
KevinADC
4,059 Recognized Expert Specialist
I have a funny feeling he means File Manager.....
Sep 22 '08 #6
Icecrack
174 Recognized Expert New Member
hey guys,

http://www.farmanager. com/

if its in the default then its should be

Expand|Select|Wrap|Line Numbers
  1. system(`c:\program files\far\far.exe`);
Sep 23 '08 #7
KevinADC
4,059 Recognized Expert Specialist
looks like the old DOS interface I used to work with more than 15 years ago.
Sep 23 '08 #8
Icecrack
174 Recognized Expert New Member
just to help this fella out i thought ill put in some command line argv


Expand|Select|Wrap|Line Numbers
  1.  /?   This help.
  2.  /a   Disable display of characters with codes 0 - 31 and 255.
  3.  /ag  Disable display of pseudographics characters.
  4.  /8   Forces FAR to work in ANSI (non-Unicode) console.
  5.  /e[<line>[:<pos>]] <filename>
  6.       Edit the specified file.
  7.  /i   Set small (16x16) icon for FAR console window.
  8.  /p[<path>]
  9.       Search for "common" plugins in the directory, specified by <path>.
  10.  /co  Forces FAR to load plugins from the cache only.
  11.  /rc  Restore console windows settings upon exiting FAR.
  12.  /u <username>
  13.       Allows to have separate settings for different users.
  14.  /v <filename>
  15.       View the specified file. If <filename> is -, data is read from the stdin.
  16.  /x   Disable exception handling.
Sep 23 '08 #9

Sign in to post your reply or Sign up for a free account.

Similar topics

4
32854
by: Yuri Vorontsov | last post by:
Hallo! We have troubles (post XP SP2) to open local folders from the web application: - the web application allows users to select a local file (input type=file) - the system DOES NOT upload the file but stores the path to the folder containing this file into a database. - the path to the local folder is linked as <a href=file:///blablabla/folder>Open folder</a> - we used to be able to open the folder by clicking on the link above but...
4
17484
by: lauren quantrell | last post by:
Is there a way to open the MS Outlook address book using VBA and then be able to do something with the return value? I want users to click an icon to open the Outlook address book then when an address is selected, populate an Access field with the address. Is this remotely possible? Thanks, lq
4
3386
by: Goober | last post by:
I have a dotnet web app that opens & works fine. There's another application on the same server, in a folder below the web application. Both web apps are set up as virtual directories there and both work on the server. I am preparing to take ownership of the new project, and have tried to open it, but get the following message when I try to open it: "Unable to open web project 'myproject'. The file path
8
1694
by: Kenneth P | last post by:
Hi, I've had a hd crash (with proper data backup) and I wonder what way would be the best way to set up an old project with all code from a backup hd in a new vs.net2003 environment? TIA Kenneth P
4
3143
by: santel_helvis | last post by:
Hi there, I wanna open the folder using asp.net. I am using anchor link to do that. But in href part how shall I give the location. Anyone plz help me out. Thanks in advance
0
1153
by: Aaron | last post by:
I have two imagebuttons in my asp.net (I'm using vb.net) application. I need one of them to open a folder and one to open a file within the aforementioned folder. I am not sure which class exposes the filesystem. I do not want a "File Open" dialog box, I need the actual folder and file to open. The path is in UNC. For example: Imagebutton1 should open the folder \\server1\documents\resumes Imagebutton2 should open the file...
4
4051
by: g4356 | last post by:
Hi, A new baby question: I downloaded a dot net project and saved it to my local disk. When I tried to open this project, a message popped up: "Unable to open web project "test/myfirstweb"/ The file path "D:\dnet\webproj\myfirstweb\home" does not correspond to the URL 'http://localhost:/test/myfirstweb'. The two need to map to the same server location. HTTP Error 404:Object not found".
0
3234
by: Niyazi | last post by:
Hi, I created application that store the data in SQL SERVER that reside on network. The client also use this application to access the resources provided with application. But is the client want to register new customer or companies they will enter the information in Windows Form and the program automaticaly creates the WORD document under specific folder under application path. Once the empty word file created than ask user if they want...
7
2017
by: jonathandrott | last post by:
sorry newbie question probably. i'm trying to open an specific folder. open each file with in the folder individually and process each one. all the processing code has been written. i'm looking for sample code to open the folder and start grabbing files. thanks.
25
2901
by: Andy_Khosravi | last post by:
I just recently changed my database that I'm running from a monolithic DB to a split FE/BE. The front end resides on the client machine and the BE resides on a network drive. I'm experimenting with a utility developed by Tony Toews to handle the distribution and subsequent updates of the software. I'm having some trouble with the overall upgrade process I've implemented, and I'm hoping one of you may have an idea how to go about fixing...
0
9731
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9605
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10651
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10393
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10405
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7671
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
1
4342
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3871
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3020
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.