~ubuntu-branches/ubuntu/natty/miro/natty

« back to all changes in this revision

Viewing changes to platform/windows-xul/plat/specialfolders.py

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-01-22 02:46:33 UTC
  • mfrom: (1.4.10 upstream) (1.7.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20110122024633-kjme8u93y2il5nmf
Tags: 3.5.1-1ubuntu1
* Merge from debian.  Remaining ubuntu changes:
  - Use python 2.7 instead of python 2.6
  - Relax dependency on python-dbus to >= 0.83.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Miro - an RSS based video player application
2
 
# Copyright (C) 2005-2010 Participatory Culture Foundation
3
 
#
4
 
# This program is free software; you can redistribute it and/or modify
5
 
# it under the terms of the GNU General Public License as published by
6
 
# the Free Software Foundation; either version 2 of the License, or
7
 
# (at your option) any later version.
8
 
#
9
 
# This program is distributed in the hope that it will be useful,
10
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
# GNU General Public License for more details.
13
 
#
14
 
# You should have received a copy of the GNU General Public License
15
 
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17
 
#
18
 
# In addition, as a special exception, the copyright holders give
19
 
# permission to link the code of portions of this program with the OpenSSL
20
 
# library.
21
 
#
22
 
# You must obey the GNU General Public License in all respects for all of
23
 
# the code used other than OpenSSL. If you modify file(s) with this
24
 
# exception, you may extend this exception to your version of the file(s),
25
 
# but you are not obligated to do so. If you do not wish to do so, delete
26
 
# this exception statement from your version. If you delete this exception
27
 
# statement from all source files in the program, then also delete it here.
28
 
 
29
 
"""Contains the locations of special windows folders like "My Documents"."""
30
 
 
31
 
import ctypes
32
 
import os
33
 
from miro import u3info
34
 
 
35
 
_specialFolderCSIDLs = {
36
 
    'AppData': 0x001a,
37
 
    "My Music": 0x000d,
38
 
    "My Pictures": 0x0027,
39
 
    "My Videos": 0x000e,
40
 
    "My Documents": 0x0005,
41
 
    "Desktop": 0x0000,
42
 
    "Common AppData": 0x0023,
43
 
    "System": 0x0025
44
 
}
45
 
 
46
 
def get_special_folder(name):
47
 
    """Get the location of a special folder.  name should be one of the
48
 
    following: 'AppData', 'My Music', 'My Pictures', 'My Videos', 
49
 
    'My Documents', 'Desktop'.
50
 
 
51
 
    The path to the folder will be returned, or None if the lookup fails
52
 
    """
53
 
    buf = ctypes.create_unicode_buffer(260)
54
 
    buf2 = ctypes.create_unicode_buffer(1024) 
55
 
    SHGetSpecialFolderPath = ctypes.windll.shell32.SHGetSpecialFolderPathW
56
 
    GetShortPathName = ctypes.windll.kernel32.GetShortPathNameW
57
 
    csidl = _specialFolderCSIDLs[name]
58
 
    if SHGetSpecialFolderPath(None, buf, csidl, False):
59
 
        if GetShortPathName(buf, buf2, 1024):
60
 
            return buf2.value
61
 
        else:
62
 
            return buf.value
63
 
    else:
64
 
        return None
65
 
 
66
 
commonAppDataDirectory = get_special_folder("Common AppData")
67
 
appDataDirectory = get_special_folder("AppData")
68
 
if u3info.u3_active:
69
 
    baseMoviesDirectory = u3info.DEVICE_DOCUMENT_PREFIX + '\\' + "Videos"
70
 
    nonVideoDirectory = u3info.DEVICE_DOCUMENT_PREFIX
71
 
else:
72
 
    baseMoviesDirectory = get_special_folder('My Videos')
73
 
    nonVideoDirectory = get_special_folder('Desktop')
74
 
    # The "My Videos" folder isn't guaranteed to be listed. If it isn't
75
 
    # there, we do this hack.
76
 
    if baseMoviesDirectory is None:
77
 
        baseMoviesDirectory = os.path.join(get_special_folder('My Documents'), 'My Videos')