Python: Partager un dossier dans le réseaux

Author:

 list, list, module
{filelink=16856}

__author__="sakoba"
__date__ ="$23 nov. 2012 20:18:18$"

import win32net
import win32netcon
shareInfo={  }
shareInfo['netname'] = 'test python'
shareInfo['type'] = win32netcon.STYPE_DISKTREE
shareInfo['remark'] = 'data files'
shareInfo['permissions'] = 0
shareInfo['max_uses'] = -1
shareInfo['current_uses'] = 0
shareInfo['path'] = 'c:\\monDossier'
shareInfo['passwd'] = ''  # Si vous voulez protéger le dossier par un mot de passe
serveur = 'Nom_du_serveur'
win32net.NetShareAdd(serveur, 2, shareInfo)

Livres Sur ce Sujet

[amazon_image id=”2212134347″ link=”true” target=”_blank” size=”medium” ]Apprendre à programmer avec Python 3[/amazon_image] [amazon_image id=”B005J2L260″ link=”true” target=”_blank” size=”medium” ]Apprenez à programmer en Python[/amazon_image] [amazon_image id=”2100508830″ link=”true” target=”_blank” size=”medium” ]Python : Petit guide à l’usage du développeur agile[/amazon_image] [amazon_image id=”2212127081″ link=”true” target=”_blank” size=”medium” ]Apprendre à programmer avec Python 3 : Avec plus de 50 pages de corigés d’exercices ![/amazon_image]

Leave a Reply

Your email address will not be published. Required fields are marked *