Factbites
 Where results make sense
About us   |   Why use us?   |   Reviews   |   PR   |   Contact us  

Topic: Pathname


In the News (Mon 28 Dec 09)

  
  United States Patent Application: 0050044075   (Site not responding. Last check: 2007-10-16)
A computer-readable medium, having computer-executable components, comprising: a data stature including variable/value mappings; a pathname resolver configured to identify a variable in a pathname, to retrieve from the data structure a value associated with the identified variable, and to modify the pathname such that the variable is replaced with the value from the data structure.
A computer-readable medium having computer-executable instructions comprising: receiving a pathname that includes a variable; resolving the pathname by mapping the variable to a corresponding value in a data structure; returning a handle to an object pointed to by the resolved pathname; and expanding the data structure by adding variable/value pairs to the data structure.
The pathname resolver is configured to identify a variable in a pathname, to retrieve from the data structure a value associated with the identified variable, and to modify the pathname such that the variable is replaced with the value from the data structure.
appft1.uspto.gov /netacgi/nph-Parser?Sect1=PTO1&Sect2=HITOFF&d=PG01&p=1&u=/netahtml/PTO/srchnum.html&r=1&f=G&l=50&s1="20050044075".PGNR.&OS=DN/20050044075&RS=DN/20050044075   (3057 words)

  
 What is pathname? - A Word Definition From the Webopedia Computer Dictionary
Every file has a name, called a filename, so the simplest type of pathname is just a filename.
If you specify a filename as the pathname, the operating system looks for that file in your current working directory.
The pathname always starts from your working directory or from the root directory.
www.webopedia.com /TERM/p/pathname.html   (224 words)

  
 Class: Pathname
Pathname represents a pathname which locates a file in a filesystem.
Pathname#+ appends a pathname fragment to this one to produce a new Pathname object.
Returns the children of the directory (files and subdirectories, not recursive) as an array of Pathname objects.
www.ruby-doc.org /core/classes/Pathname.html   (652 words)

  
 Java 2 Platform SE v1.3.1: Class File
The conversion of a pathname string to or from an abstract pathname is inherently system-dependent.
When a pathname string is converted into an abstract pathname, the names within it may be separated by the default name-separator character or by any other name-separator character that is supported by the underlying system.
The canonical pathname of a file that resides on some other machine and is accessed via a remote-filesystem protocol such as SMB or NFS may or may not begin with one of the roots returned by this method.
java.sun.com /j2se/1.3/docs/api/java/io/File.html   (4666 words)

  
 RFC 1037 (rfc1037) - NFILE - a file access protocol
These pathnames must be fully defaulted, in the sense that they have a directory and file name (and file type, if the server operating system supports file types).
pathname is the pathname of the link to be created; target-pathname is the place in the file system to which the link points.
The arguments pathname and to-pathname and the return values from- pathname and to-pathname are strings in the full pathname syntax of the server host.
www.faqs.org /rfcs/rfc1037.html   (18915 words)

  
 XBIT - Comb widget specifications
A pathname of a combined-widget identifies the parent widget of all the internal sub-widgets.
The second element pathname is the pathname of the sub-widget, the third element class is the class name of the widget and the last element of the list is the configuration optoins of that sub-widget.
Notice that, a pathname that identifies a combined widget, also identifies a generic Tk widget, which is the root of all the offspring sub-widgets.
www.geocities.com /~chengye/comb.html   (1622 words)

  
 LEARN THE NET: Glossary: Pathname
A pathname indicates the location of a particular file or directory by outlining the route or "path" from the host name (if the file resides on a remote server) through the directory structure to the desired file name or directory name.
An absolute pathname provides the full path (address) of a file, including the computer system, directories, and subdirectories (if any) it resides in.
Relative pathnames are used to describe a file or directory location on the user's system relative to the user's current location on the system (i.e., based on which level of the directory structure the user is in).
www.learnthenet.com /english/glossary/pathname.htm   (138 words)

  
 23.1.6. Pathname Functions   (Site not responding. Last check: 2007-10-16)
The argument may be a pathname a string or symbol or a stream; the result is always a pathname.
If the given pathname explicitly specifies a host and does not supply a device then if the host component of the defaults matches the host component of the given pathname then the device is taken from the defaults; otherwise the device will be the default file device for that host.
The pathname argument may be a pathname a string or symbol or a stream that is or was open to a file.
www.oopweb.com /LISP/Documents/cltl/Volume/clm/node214.html   (2749 words)

  
 CLHS: Function PATHNAME
If the pathspec designator is a stream, the stream can be either open or closed; in both cases, the pathname returned corresponds to the filename used to open the file.
pathname returns the same pathname for a file stream after it is closed as it did when it was open.
If the pathspec designator is a file stream created by opening a logical pathname, a logical pathname is returned.
www.lisp.org /HyperSpec/Body/fun_pathname.html   (224 words)

  
 test
True if pathname resolves to a file that exists and for which permission to read from the file will be granted, as defined in File Read, Write, and Creation.
True if pathname resolves to a file that exists and for which permission to write to the file will be granted, as defined in File Read, Write, and Creation.
True if pathname resolves to a file that exists and for which permission to execute the file (or search it, if it is a directory) will be granted, as defined in File Read, Write, and Creation.
www.opengroup.org /onlinepubs/009695399/utilities/test.html   (2546 words)

  
 pathname - FOLDOC Definition   (Site not responding. Last check: 2007-10-16)
The path is usually specified by listing the nodes top-down, separating the directories by the pathname separator ("/" in Unix, "\" in MS-DOS).
A pathname may be an absolute pathname or a relative pathname.
The part of the pathname of a file after the last separator is called the basename.
www.nightflight.com /foldoc-bin/foldoc.cgi?pathname   (92 words)

  
 Practical: A Portable Pathname Library
Pathnames provide a useful API for manipulating names as names, but when it comes to the functions that actually interact with the file system, things get a bit hairy.
The root of the problem, as I mentioned, is that the pathname abstraction was designed to represent filenames on a much wider variety of file systems than are commonly used now.
Unfortunately, by making pathnames abstract enough to account for a wide variety of file systems, Common Lisp's designers left implementers with a fair number of choices to make about how exactly to map the pathname abstraction onto any particular file system.
www.gigamonkeys.com /book/practical-a-portable-pathname-library.html   (2631 words)

  
 File (Java 2 Platform SE v1.4.2)
URI that is created in a virtual machine on one operating system is converted into an abstract pathname in a virtual machine on a different operating system.
On Microsoft Windows systems, a relative pathname is made absolute by resolving it against the current directory of the drive named by the pathname, if any; if not, it is resolved against the current user directory.
If it can be determined that the file denoted by this abstract pathname is a directory, then the resulting URI will end with a slash.
java.sun.com /j2se/1.4.2/docs/api/java/io/File.html   (5125 words)

  
 Tk Built-In Commands - text manual page   (Site not responding. Last check: 2007-10-16)
Marks may be manipulated with the ``pathName mark'' widget command, and their current locations may be determined by using the mark name as an index in widget commands.
PathName is the name of the command, which is the same as the text widget's path name.
This command is typically associated with mouse motion events in the widget, to produce the effect of dragging the text at high speed through the window.
www.tcl.tk /man/tcl8.4/TkCmd/text.htm   (11391 words)

  
 compile-file-pathname
The defaults for the output-file are taken from the pathname that results from merging the input-file with the value of *default-pathname-defaults*, except that the type component should default to the appropriate implementation-defined default type for compiled files.
If input-file is a logical pathname, it is translated into a physical pathname as if by calling translate-logical-pathname.
compile-file-pathname returns the same pathname after a file is closed as it did when the file was open.
www.bu.edu /cc/support/software/programming/lisp/allegro/ansicl/dictentr/compile2.htm   (195 words)

  
 23.1.6. Pathname Functions
X3J13 voted in March 1988 not to permit symbols as pathnames (PATHNAME-SYMBOL)   and to specify exactly which streams may be used as pathnames (PATHNAME-STREAM)  .
to recognize a logical pathname namestring as its first argument if its second argument is a logical pathname (see section 23.1.5).
to map customary case in argument pathnames to the customary case in returned pathnames (see section 23.1.2).
www.cs.cmu.edu /Groups/AI/html/cltl/clm/node214.html   (2754 words)

  
 logical-pathname-translations
If host is a string that has not been previously used as a logical pathname host, a new logical pathname host is defined; otherwise an existing host's translations are replaced.
If to-wildcard coerces to a logical pathname, translate-logical-pathname will perform repeated translation steps when it uses it.
host is either the host component of a logical pathname or a string that has been defined as a logical pathname host name by setf of logical-pathname-translations.
www.franz.com /support/documentation/6.2/ansicl/dictentr/logical0.htm   (451 words)

  
 SRC Modula-3: os/src/Common/Pathname.i3   (Site not responding. Last check: 2007-10-16)
A pathname may be absolute, in which case it begins with the name of a root directory.
If a pathname is not absolute, it is interpreted relative to the working directory associated with the process (see
When a pathname with invalid syntax is passed to a procedure in this interface not declared as raising the exception
www.research.compaq.com /src/m3sources/html/os/src/Common/Pathname.i3.html   (881 words)

  
 CLHS: Function LOGICAL-PATHNAME   (Site not responding. Last check: 2007-10-16)
If pathspec is a logical pathname namestring, it should contain a host component and its following colon.
If pathspec is a stream, it should be one for which pathname returns a logical pathname.
logical-pathname returns the same logical pathname after a file is closed as it did when the file was open.
ccrma.stanford.edu /courses/220b/HyperSpec/Body/fun_logical-pathname.html   (133 words)

  
 CLHS: Issue PATHNAME-UNSPECIFIC-COMPONENT Writeup
VERSION field of a pathname, for file systems in which it makes sense.
pathnames in a rational way and at the same time to conform to the
the type, of a generic pathname are :unspecific.
www.cs.cmu.edu /Groups/AI/html/hyperspec/HyperSpec/Issues/iss266-writeup.html   (727 words)

  
 CLHS: Function MAKE-PATHNAME
After the components supplied explicitly by host, device, directory, name, type, and version are filled in, the merging rules used by merge-pathnames are used to fill in any unsupplied components from the defaults supplied by defaults.
If case is supplied, it is treated as described in Section 19.2.2.1.2 (Case in Pathname Components).
The resulting pathname is a logical pathname if and only its host component is a logical host or a string that names a defined logical host.
www.lispworks.com /documentation/HyperSpec/Body/f_mk_pn.htm   (432 words)

  
 ANSI and GNU Common Lisp Document - make-pathname
For the explanation of the arguments that can be supplied for each component, see section Pathname Components.
If case is supplied, it is treated as described in section Case in Pathname Components.
In this ;; implementation, there is a convention that any text preceding the ;; first colon in a pathname namestring is a host name.
www.mathcs.duq.edu /simon/Gcl/gcl_1117.html   (421 words)

  
 GCL ANSI Pathname Patch
Pathnames with hosts that are in not in any of those tables, could be parsed, printed and processed, but will signal a file error on access.
Pathnames with devices or hosts are only available, if they are resolved.
This function is used in several places to distinct a pathname from a logical pathname.
www.copyleft.de /lisp/gcl-ansi-pathnames.html?plain   (2323 words)

  
 Tix Built-In Commands - tixTList manual page
Additional options, described above, may be specified on the command line or in the option database to configure aspects of the TList widget such as its cursor and relief.
PathName is the name of the command, which is the same as the TList widget's path name.
If no option is specified, returns a list describing all of the available options for pathName (see Tk_ConfigureInfo for information on the format of this list).
tix.sourceforge.net /dist/current/man/html/TixCmd/tixTList.htm   (2446 words)

  
 Tix Built-In Commands - tixHList manual page
Additional options, described above, may be specified on the command line or in the option database to configure aspects of the HList widget such as its cursor and relief.
PathName is the name of the command, which is the same as the HList widget's path name.
A list entry must be created after its parent is created (unless this entry is a top-level entry, which has no parent).
tix.sourceforge.net /dist/current/man/html/TixCmd/tixHList.htm   (4458 words)

  
 RFC 615 (rfc615) - Proposed Network Standard Data Pathname syntax
Network Working Group D. Crocker (UCLA-NMC) Request for Comments: 615 MAR 74 NIC #21531 Proposed Network Standard Data Pathname Syntax There seems to be an increasing call for a Network Standard Data Pathname (NSDP); that is, a standardized means of referring to a specific location for/of a collection of bits somewhere on the Network.
Case is irrelevant to the syntax, though some sites will care about case in fields: indicates what part of the pathname the next is going to refer to: The single-character keys are abbreviations for the respective full-word keys: ARE order dependent, but defaulted ones may be omitted.
For example, adding Version number or Access protection as standard fields would be difficult: It is suggested that human interfaces be built to translate to/from NSDP syntax and the user's standard environment.
www.faqs.org /rfcs/rfc615.html   (713 words)

  
 Annoyances.org - re: Changing the Windows XP Filing Pathname (Windows XP Discussion Forum)   (Site not responding. Last check: 2007-10-16)
The pathname is just that - a pathname - it tells you where the target file/directory is in relationship to the "root" (the drive letter that has the file).
The only way to dispense with a long pathname is to move/copy files to a directory closer to root.
If you don't understand this, I would suggest you spend more time "playing" and learning about your computer and less time trying to "fix" things that need to be the way they are for the computer to work...
www.annoyances.org /exec/forum/winxp/1028048034   (198 words)

  
 CLHS: Function MAKE-PATHNAME
The default is a pathname whose host component is the same as the host component of the value of *default-pathname-defaults*, and whose other components are all nil.
Constructs and returns a pathname from the supplied keyword arguments.
Whenever a pathname is constructed the components may be canonicalized if appropriate.
www.lisp.org /HyperSpec/Body/fun_make-pathname.html   (433 words)

  
 6.2 os.path -- Common pathname manipulations
This module implements some useful functions on pathnames.
is an absolute pathname (begins with a slash).
if both pathname arguments refer to the same file or directory (as indicated by device number and i-node number).
www.python.org /doc/current/lib/module-os.path.html   (654 words)

  
 CLHS: Issue PATHNAME-PRINT-READ Writeup
Although pathnames are required to print re-readably, there is no
Further, it is common in programs to want pathnames to print in
#.(pathname "asdf"), which he thinks is not as pretty as #P"asdf"
www.csse.monash.edu.au /documents/HyperSpec/Issues/iss260-writeup.html   (381 words)

  
 CLHS: Function USER-HOMEDIR-PATHNAME   (Site not responding. Last check: 2007-10-16)
user-homedir-pathname determines the pathname that corresponds to the user's home directory on host.
The definition of home directory is implementation-dependent, but defined in Common Lisp to mean the directory where the user keeps personal files such as initialization files and mail.
user-homedir-pathname returns a pathname without any name, type, or version component (those components are all nil) for the user's home directory on host.
www.eg.bucknell.edu /~cs379/clhs/Body/f_user_h.htm   (120 words)

Try your search on: Qwika (all wikis)

Factbites
  About us   |   Why use us?   |   Reviews   |   Press   |   Contact us  
Copyright © 2005-2007 www.factbites.com Usage implies agreement with terms.