Tracking down DFS open file users

248

The DFS service simply maps the correct folder to the correct location, I can't imagine it would maintain a file handle on anything. What is the name of the file that keeps appearing? Right click the file, go properties -> Details and find out who created the file, that's probably your culprit. As far as checking which Users have which file open, I don't know if it's possible on a windows server machine, but this thread might help you https://stackoverflow.com/questions/581219/find-out-who-is-locking-a-file-on-a-network-share

Share:
248

Related videos on Youtube

berkc
Author by

berkc

Updated on September 18, 2022

Comments

  • berkc
    berkc almost 2 years

    I am trying to load 2 textures and map them to 2 seperate quads.

    Texture1 = TextureIO.newTexture(cl.getResource(texturePath1), false, null);
    
    Texture2 = TextureIO.newTexture(cl.getResource(texturePath2), false, null);
    

    I also tried this:

    BufferedImage image = ImageIO.read(getClass().getClassLoader().getResource(texturePath1));
    
    Texture1 = AWTTextureIO.newTexture(GLProfile.getDefault(), image, false);
    
    image = ImageIO.read(getClass().getClassLoader().getResource(texturePath2));
    
    Texture2 = AWTTextureIO.newTexture(GLProfile.getDefault(), image, false);
    

    But when I bind them with quads, Texture1 has the same texture as Texture2. Second one I loaded always overlap the first one. I made a research but it was useless because the lack of tutorials on JOGL.

    This seems a simple problem so can anyone with JOGL knowledge help me?

  • Paddy Carroll
    Paddy Carroll almost 12 years