Programmation, programme ouvre régulièrement

Résolu/Fermé
guibbor Messages postés 213 Date d'inscription lundi 2 août 2010 Statut Membre Dernière intervention 14 avril 2021 - 15 déc. 2012 à 17:35
guibbor Messages postés 213 Date d'inscription lundi 2 août 2010 Statut Membre Dernière intervention 14 avril 2021 - 25 févr. 2014 à 19:12
Bonjour,
Je cherche a créer un programme sur mon ordinateur qui ouvre automatiquement un dossier, une image, un fichier ou un programme toutes les x secondes, quel langage utiliser svp ? Connaissez vous un bon tuto pour ce langage ? Et si vous avez un script tout fait, je suis preneur !

Merci !



3 réponses

guibbor Messages postés 213 Date d'inscription lundi 2 août 2010 Statut Membre Dernière intervention 14 avril 2021 19
27 déc. 2012 à 12:36
Up !
0
KX Messages postés 16752 Date d'inscription samedi 31 mai 2008 Statut Modérateur Dernière intervention 31 août 2024 3 019
27 déc. 2012 à 13:11
Je pense que la plupart des langages doivent pouvoir faire ça.

Exemple en Java :

public class Test
{
    public static void main(String[] args) throws Exception
    {
        // the Desktop instance of the current browser context
        java.awt.Desktop desktop = java.awt.Desktop.getDesktop();
        
        // the file to be opened with the associated application
        java.io.File file = new java.io.File("C:/");
        
        // the length of time to sleep in milliseconds
        long millis = 5000;
        
        while (true)
        {
            // Launches the associated application to open the file.
            // If the specified file is a directory, the file manager of the current platform is launched to open it.
            desktop.open(file);

            // Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds, subject to the precision and accuracy of system timers and schedulers.
            Thread.sleep(millis); 
        }
    }
}
0
guibbor Messages postés 213 Date d'inscription lundi 2 août 2010 Statut Membre Dernière intervention 14 avril 2021 19
25 févr. 2014 à 19:12
Merci Bien :)
0