Sponsored Content
Top Forums Shell Programming and Scripting How to check if all directories of file's path exists? Post 302226661 by MartyIX on Tuesday 19th of August 2008 12:59:03 PM
Old 08-19-2008
How to check if all directories of file's path exists?

I wonder if the script below is possible to write somehow more efficiently. It seems to me the problem is very common..

CreateFolders() # parameter: name of file with relative path with regard to directory $project_root
{
echo $1 | awk '{ n=split($1, array, "/");
for (i=1;i<n;i++) {
print array[i]
}
} ' >"$project_root/createDirectory.tmp"

if [ -s "$project_root/createDirectory.tmp" ]; then

folder=$project_root

while read subdir; do

if [ ! -d "$folder/$subdir" ];then
mkdir "$folder/$subdir"
fi

cd "$folder/$subdir"

folder="$folder/$subdir"

done<"$project_root/createDirectory.tmp"

fi

rm "$project_root/createDirectory.tmp";
}

Thank you for help
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

check if remote file exists

Hi Does anybody know how I can check if a file exists on a remote machine i.e. see bellow, this doesn't work by the way and if tried countless variations on this #!/bin/sh hostname=server56 if ; then echo file exists else echo file doesn't exist fi Any help on this would... (2 Replies)
Discussion started by: hcclnoodles
2 Replies

2. Shell Programming and Scripting

Check to see if a file exists?

Hi. I'd like to have an IF-Then-Else statement where I can check to see if a file exists? We have the Bourne Shell by default. I'm looking for the syntax to do something like this: if myfile.txt exists then ...my code else ...my code end if Any help would be greatly... (5 Replies)
Discussion started by: buechler66
5 Replies

3. Shell Programming and Scripting

Script to check file exists

Hi, I am trying to write a script which checks if any file exists with "*.log" or "*.out" in Directory below is the code #------------------ path=/abd/xyz/ if ; then echo "Good" else echo "Failure" fi #-------------------------- its always going to else part and printing... (8 Replies)
Discussion started by: ch33ry
8 Replies

4. Shell Programming and Scripting

how to check to see if a file exists?

I want to write a script to see if various files exist. What I want to do is have the script search in various directories if a file exist, and if not, then output something like "/path/file does not exist". I don't actually know of how to check and see if a file exists or not. What I have in mind... (2 Replies)
Discussion started by: astropi
2 Replies

5. Shell Programming and Scripting

File exists, but cannot be opened.How to check- whether it could be opened to read when it exists

Hi #Testing for file existence if ; then echo 'SCHOOL data is available for processing' else echo 'SCHOOL DATA IS NOT AVAILABLE FOR PROCESSING' : i wrote a script, where it begins by checking if file exists or not. If it exists, it truncates the database... (2 Replies)
Discussion started by: rxg
2 Replies

6. Shell Programming and Scripting

Check if file exists or not

Hi, I want to check if the file exists or not in the directory. i am trying below code but not working. File="/home/va59657/Account_20090213*.dat" echo "$File" if ]; then echo "file found" else echo "file not found" fi However i am getting file not found even if file exits as... (5 Replies)
Discussion started by: Vivekit82
5 Replies

7. Shell Programming and Scripting

To check if file exists

Hi, I have the below code written. However I am not getting the desired output I am checking if the particular path has file in it. #!/bin/bash ls -l /IRS2/IRS2_ODI/INFILE/*LS* 1>/dev/null 2>/dev/null if then echo $? echo "File Exists" fi ... (3 Replies)
Discussion started by: Shanmugapriya D
3 Replies

8. UNIX for Beginners Questions & Answers

Check if file exists

I need to check whether a file exists and has been changed. The file should contain a specific string. The file should also have been changed within the last ten seconds. How do I do that? (3 Replies)
Discussion started by: locoroco
3 Replies

9. Shell Programming and Scripting

How to figure out a if insensitive file path exists or not?

I use the below command with echo $? to determine if a file path exists. ls /app/weblogic/myserver4/logs/`hostname`/data/proc.pid Output: /app/weblogic/myserver4/logs/myhostseven/data/proc.pid The problem is that I have both AIX and Linux systems. On some servers hostname is either... (6 Replies)
Discussion started by: mohtashims
6 Replies

10. Programming

Makefile missing include path Although the path exists and defined

i have make file which i try to make them generic but it keeps to compline it missing include directory this is the makefile : CXX=g++ CPPFAGS= -Wall -O0 -g -std=c++14 INCLUDES = -I/home/vagrant/libuv/include -Isrc LIBS_DIRS = -L/home/vagrant/libuv/build LDFLAGS=... (7 Replies)
Discussion started by: umen
7 Replies
XSetFontPath()															    XSetFontPath()

Name
  XSetFontPath - set the font search path.

Synopsis
  XSetFontPath(display, directories, ndirs)
	Display *display;
	char **directories;
	int ndirs;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  directories
	    Specifies the directory path used to look for the font.  Setting the path to the empty list restores the default path defined for
	    the X server.

  ndirs     Specifies the number of directories in the path.

Description
  XSetFontPath() defines the directory search path for font lookup for all clients.  Therefore the user  should  construct  a  new  directory
  search  path	carefully  by adding to the old directory search path obtained by XGetFontPath().  Passing an invalid path can result in pre-
  venting the server from accessing any fonts.	Also avoid restoring the default path, since some other client may have changed the  path  on
  purpose.

  The  interpretation  of the strings is operating-system-dependent, but they are intended to specify directories to be searched in the order
  listed.  Also, the contents of these strings are operating system specific and are not intended to be used by client applications.

  An X server is permitted to cache font information internally, for example, it might cache an entire font from a file and not check on sub-
  sequent  opens of that font to see if the underlying font file has changed.  However, when the font path is changed the X server is guaran-
  teed to flush all cached information about fonts for which there currently are no explicit resource IDs allocated.

  The meaning of errors from this request is implementation-dependent.

Errors
  BadValue

See Also
  XCreateFontCursor(), XFreeFont(), XFreeFontInfo(), XFreeFontNames(),	XFreeFontPath(),  XGetFontPath(),  XGetFontProperty(),	XListFonts(),
  XListFontsWithInfo(), XLoadFont(), XLoadQueryFont(), XQueryFont(), XSetFont(), XUnloadFont().

Xlib - Fonts															    XSetFontPath()
All times are GMT -4. The time now is 08:06 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy