Les Snippets

Connexion

Upload en changeant le nom du fichier

Niveau requis pour utiliser/comprendre cette source : 1 ( Débutant )
Créé le 05/05/2006 11:24:54 et initié par danielamaury [Liste]
Date de mise à jour : 04/06/2006 19:24:58
Vue : 8055
Catégorie(s) : WebForm
Langages dispo pour ce code :
- ASP.NET 2.x, VB 2005
- Voir tous les langages pour ce code snippet



Langage : VB 2005 , ASP.NET 2.x
Date ajout : 05/05/2006
Posté par danielamaury [Liste]
DateMAJ : 04/06/2006
Public Function UploadNom(ByVal File As FileUpload, ByVal Destination As String, ByVal Nom As String) As String 
    Dim NomFile As String = File.PostedFile.FileName
    Dim NomFinal As String = Nom & System.IO.Path.GetExtension(NomFile) 
    File.PostedFile.SaveAs(Destination & NomFinal)
    Return NomFinal 
End Function


Snippets en rapport avec : Fichier, Téléchargement, Upload, Renommer, Uploader



Codes sources en rapport avec : Fichier, Téléchargement, Upload, Renommer, Uploader

{PHP} UPLOAD MULTIPLE OU SIMPLE DES FICHIERS
il n'a jamais été aussi facile de transferer des fichiers sur votre serveur. /* EXPLICATION ET REG...

{Visual Basic, VB6, VB.NET, VB 2005} UPLOADER UN FICHIER
Un petit prog (tout petit) qui permet d uploader un fichier....

{ColdFusion} UPLOAD D'UN FICHIER ET RÉCUPÉRATION DE SON NOM.
Lors d'un Upload de fichier, il peut être interressant de récupérer son nom d'origine pour par exemp...

{PHP} UPLOAD IMAGES TRÈS SIMPLE
Un script pour upload d'image simple Ce code est simple mais je ne suis qu'un débutant ...

{PHP} UTILISATION DU COMPOSANT MULTIPOWUPLOAD
Exemple d'utilisation du composant MultiPowUpload.... Le dossier UploadedFiles doit avoir les dro...

{ASP / ASP.NET} UPLOAD FILE
uplouad un fichier vers un serveur par un script aspx (c#) les image .gif et jpg vers le rep images...

{PHP} UPLOAD PLUSIEURS FICHIERS EN AJAX + FLASH+PHP
script réalisé par http://digitarald.de/project/fancyupload/ , Il permet l'envoi de fichiers multip...

{Visual Basic, VB6, VB.NET, VB 2005} YMDOWNLOADER
[vb6] Ce petit code permet de télécharger n'importe quel fichier sur le web. Il se place dans une li...

{Foxpro} RENOMMER LE PRÉFIXE DE TOUS LES FICHIERS D'UN DOSSIER
Vous disposez d'un dossier où les noms de plusieurs fichiers commencent par la même chaine. Vous vo...

{Python} RENOMMER DES FICHIERS EN MASSE
Permet de renommer vos fichiers en masse. Vous pouvez fournir l'extension des fichiers que vous vou...