GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Path::Class::URI(3) User Contributed Perl Documentation Path::Class::URI(3)

Path::Class::URI - Serializes and deserializes Path::Class objects as file:// URI

  use Path::Class;
  use Path::Class::URI;

  my $file = file('bob', 'john.txt');
  my $uri  = $file->uri; # file:bob/john.txt

  file('', 'tmp', 'bar.txt')->uri; # file:///tmp/bar.txt

  my $file = file_from_uri("file:///tmp/bar.txt"); # or URI::file object
  $fh = $file->open;

Path::Class::URI is an extension to Path::Class to serialize file path from and to file:// form URI objects.

This module encodes and decodes non URI-safe characters using its literal byte encodings. If you call uri methods on Win32 Path::File objects, you'll get local filename encodings.

If you want to avoid that and always use UTF-8 filename encodings in URI, see Path::Class::Unicode bundled in this distribution.

uri (Path::Class::Entity)
  $uri = $file->uri;
  $uri = $dir->uri;
    

returns URI object representing Path::Class file and directory.

from_uri (Path::Class::Entity)
  $file = Path::Class::File->from_uri($uri);
  $dir  = Path::Class::Dir->from_uri($uri);
    

Deserializes URI object (or string) into Path::Class objects.

file_from_uri, dir_from_uri
Shortcuts for those from_uri methods. Exported by default.

Tatsuhiko Miyagawa <miyagawa@cpan.org>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Path::Class, URI::file
2008-12-03 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.